From 4437c03d0d45bd8e7bce7a1e9cb625f8fb773488 Mon Sep 17 00:00:00 2001 From: Scott M Stark Date: Thu, 9 Jan 2025 17:05:51 -0600 Subject: [PATCH 01/13] Fixes for failing tests in ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local, ee.jakarta.tck.persistence.core.query.parameter, and ee.jakarta.tck.persistence.core.criteriaapi.CriteriaDelete packages. (#1739) Start returning WARs as test archive Related to #1738 Signed-off-by: Scott M Stark --- .../CriteriaDelete/ClientPmservletTest.java | 45 +------- .../CriteriaDelete/ClientPuservletTest.java | 60 +--------- .../query/parameter/Client2PmservletTest.java | 69 +---------- .../query/parameter/Client2PuservletTest.java | 69 +---------- .../resource_local/ClientPuservletTest.java | 107 +++++++----------- .../criteriaapi/CriteriaDelete/Client.java | 14 ++- .../core/query/parameter/Client2.java | 31 ++++- 7 files changed, 99 insertions(+), 296 deletions(-) diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/ClientPmservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/ClientPmservletTest.java index 492920edbe..02a1267b51 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/ClientPmservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/ClientPmservletTest.java @@ -59,7 +59,7 @@ public class ClientPmservletTest extends ee.jakarta.tck.persistence.core.criteri @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_core_criteriapia_CriteriaDelete_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_criteriapia_CriteriaDelete_pmservlet_vehicle_web.war"); @@ -155,51 +155,16 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test ); // The persistence.xml descriptor URL parURL = Client.class.getResource("persistence.xml"); - if(parURL != null) { - jpa_core_criteriapia_CriteriaDelete.addAsManifestResource(parURL, "persistence.xml"); - } - // Add the Persistence mapping-file - URL mappingURL = Client.class.getResource("myMappingFile.xml"); - if(mappingURL != null) { - jpa_core_criteriapia_CriteriaDelete.addAsResource(mappingURL, "myMappingFile.xml"); - } - mappingURL = Client.class.getResource("myMappingFile1.xml"); - if(mappingURL != null) { - jpa_core_criteriapia_CriteriaDelete.addAsResource(mappingURL, "myMappingFile1.xml"); - } - mappingURL = Client.class.getResource("myMappingFile2.xml"); - if(mappingURL != null) { - jpa_core_criteriapia_CriteriaDelete.addAsResource(mappingURL, "myMappingFile2.xml"); - } + jpa_core_criteriapia_CriteriaDelete.addAsManifestResource(parURL, "persistence.xml"); + // Call the archive processor archiveProcessor.processParArchive(jpa_core_criteriapia_CriteriaDelete, Client.class, parURL); parURL = Client.class.getResource("orm.xml"); if(parURL != null) { jpa_core_criteriapia_CriteriaDelete.addAsManifestResource(parURL, "orm.xml"); } - - // Ear - EnterpriseArchive jpa_core_criteriapia_CriteriaDelete_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_criteriapia_CriteriaDelete_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_core_criteriapia_CriteriaDelete_vehicles_ear.addAsModule(jpa_core_criteriapia_CriteriaDelete_pmservlet_vehicle_web); - - jpa_core_criteriapia_CriteriaDelete_vehicles_ear.addAsLibrary(jpa_core_criteriapia_CriteriaDelete); - - - - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_core_criteriapia_CriteriaDelete_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_criteriapia_CriteriaDelete_vehicles_ear, Client.class, earResURL); - return jpa_core_criteriapia_CriteriaDelete_vehicles_ear; + jpa_core_criteriapia_CriteriaDelete_pmservlet_vehicle_web.addAsLibrary(jpa_core_criteriapia_CriteriaDelete); + return jpa_core_criteriapia_CriteriaDelete_pmservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/ClientPuservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/ClientPuservletTest.java index acd64b5c4e..3e49981b92 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/ClientPuservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/ClientPuservletTest.java @@ -59,7 +59,7 @@ public class ClientPuservletTest extends ee.jakarta.tck.persistence.core.criteri @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_core_criteriapia_CriteriaDelete_puservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_criteriapia_CriteriaDelete_puservlet_vehicle_web.war"); @@ -96,18 +96,6 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test jpa_core_criteriapia_CriteriaDelete_puservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); } - // Any libraries added to the war - - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/jpa/core/criteriaapi/CriteriaDelete/jpa_core_criteriapia_CriteriaDelete.jar"); - if(warResURL != null) { - jpa_core_criteriapia_CriteriaDelete_puservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/lib/jpa_core_criteriapia_CriteriaDelete.jar"); - } - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_criteriapia_CriteriaDelete_puservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/puservlet_vehicle_web.xml"); - } - // Call the archive processor archiveProcessor.processWebArchive(jpa_core_criteriapia_CriteriaDelete_puservlet_vehicle_web, Client.class, warResURL); @@ -155,51 +143,13 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test ); // The persistence.xml descriptor URL parURL = Client.class.getResource("persistence.xml"); - if(parURL != null) { - jpa_core_criteriapia_CriteriaDelete.addAsManifestResource(parURL, "persistence.xml"); - } - // Add the Persistence mapping-file - URL mappingURL = Client.class.getResource("myMappingFile.xml"); - if(mappingURL != null) { - jpa_core_criteriapia_CriteriaDelete.addAsResource(mappingURL, "myMappingFile.xml"); - } - mappingURL = Client.class.getResource("myMappingFile1.xml"); - if(mappingURL != null) { - jpa_core_criteriapia_CriteriaDelete.addAsResource(mappingURL, "myMappingFile1.xml"); - } - mappingURL = Client.class.getResource("myMappingFile2.xml"); - if(mappingURL != null) { - jpa_core_criteriapia_CriteriaDelete.addAsResource(mappingURL, "myMappingFile2.xml"); - } + jpa_core_criteriapia_CriteriaDelete.addAsManifestResource(parURL, "persistence.xml"); + // Call the archive processor archiveProcessor.processParArchive(jpa_core_criteriapia_CriteriaDelete, Client.class, parURL); - parURL = Client.class.getResource("orm.xml"); - if(parURL != null) { - jpa_core_criteriapia_CriteriaDelete.addAsManifestResource(parURL, "orm.xml"); - } - - // Ear - EnterpriseArchive jpa_core_criteriapia_CriteriaDelete_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_criteriapia_CriteriaDelete_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_core_criteriapia_CriteriaDelete_vehicles_ear.addAsModule(jpa_core_criteriapia_CriteriaDelete_puservlet_vehicle_web); + jpa_core_criteriapia_CriteriaDelete_puservlet_vehicle_web.addAsLibrary(jpa_core_criteriapia_CriteriaDelete); - jpa_core_criteriapia_CriteriaDelete_vehicles_ear.addAsLibrary(jpa_core_criteriapia_CriteriaDelete); - - - - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_core_criteriapia_CriteriaDelete_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_criteriapia_CriteriaDelete_vehicles_ear, Client.class, earResURL); - return jpa_core_criteriapia_CriteriaDelete_vehicles_ear; + return jpa_core_criteriapia_CriteriaDelete_puservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2PmservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2PmservletTest.java index 35bda18478..0136df3fb2 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2PmservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2PmservletTest.java @@ -59,7 +59,7 @@ public class Client2PmservletTest extends ee.jakarta.tck.persistence.core.query. @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_core_query_parameter_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_query_parameter_pmservlet_vehicle_web.war"); @@ -86,31 +86,11 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test ); // The web.xml descriptor URL warResURL = Client2.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_query_parameter_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); - } - // The sun-web.xml descriptor - warResURL = Client2.class.getResource("//com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.war.sun-web.xml"); - if(warResURL != null) { - jpa_core_query_parameter_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); - } - - // Any libraries added to the war - - // Web content - warResURL = Client2.class.getResource("/com/sun/ts/tests/jpa/core/query/parameter/jpa_core_query_parameter.jar"); - if(warResURL != null) { - jpa_core_query_parameter_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/lib/jpa_core_query_parameter.jar"); - } - warResURL = Client2.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_query_parameter_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/pmservlet_vehicle_web.xml"); - } + jpa_core_query_parameter_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); // Call the archive processor archiveProcessor.processWebArchive(jpa_core_query_parameter_pmservlet_vehicle_web, Client2.class, warResURL); - // Par // the jar with the correct archive name JavaArchive jpa_core_query_parameter = ShrinkWrap.create(JavaArchive.class, "jpa_core_query_parameter.jar"); @@ -120,51 +100,12 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test ); // The persistence.xml descriptor URL parURL = Client2.class.getResource("persistence.xml"); - if(parURL != null) { - jpa_core_query_parameter.addAsManifestResource(parURL, "persistence.xml"); - } - // Add the Persistence mapping-file - URL mappingURL = Client2.class.getResource("myMappingFile.xml"); - if(mappingURL != null) { - jpa_core_query_parameter.addAsResource(mappingURL, "myMappingFile.xml"); - } - mappingURL = Client2.class.getResource("myMappingFile1.xml"); - if(mappingURL != null) { - jpa_core_query_parameter.addAsResource(mappingURL, "myMappingFile1.xml"); - } - mappingURL = Client2.class.getResource("myMappingFile2.xml"); - if(mappingURL != null) { - jpa_core_query_parameter.addAsResource(mappingURL, "myMappingFile2.xml"); - } + jpa_core_query_parameter.addAsManifestResource(parURL, "persistence.xml"); // Call the archive processor archiveProcessor.processParArchive(jpa_core_query_parameter, Client2.class, parURL); - parURL = Client2.class.getResource("orm.xml"); - if(parURL != null) { - jpa_core_query_parameter.addAsManifestResource(parURL, "orm.xml"); - } - - // Ear - EnterpriseArchive jpa_core_query_parameter_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_query_parameter_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_core_query_parameter_vehicles_ear.addAsModule(jpa_core_query_parameter_pmservlet_vehicle_web); + jpa_core_query_parameter_pmservlet_vehicle_web.addAsLibrary(jpa_core_query_parameter); - jpa_core_query_parameter_vehicles_ear.addAsLibrary(jpa_core_query_parameter); - - - - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client2.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_core_query_parameter_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_query_parameter_vehicles_ear, Client2.class, earResURL); - return jpa_core_query_parameter_vehicles_ear; + return jpa_core_query_parameter_pmservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2PuservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2PuservletTest.java index e03bedae84..aca5e027be 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2PuservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2PuservletTest.java @@ -59,7 +59,7 @@ public class Client2PuservletTest extends ee.jakarta.tck.persistence.core.query. @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_core_query_parameter_puservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_query_parameter_puservlet_vehicle_web.war"); @@ -86,31 +86,11 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test ); // The web.xml descriptor URL warResURL = Client2.class.getResource("/com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_query_parameter_puservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); - } - // The sun-web.xml descriptor - warResURL = Client2.class.getResource("//com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.war.sun-web.xml"); - if(warResURL != null) { - jpa_core_query_parameter_puservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); - } - - // Any libraries added to the war - - // Web content - warResURL = Client2.class.getResource("/com/sun/ts/tests/jpa/core/query/parameter/jpa_core_query_parameter.jar"); - if(warResURL != null) { - jpa_core_query_parameter_puservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/lib/jpa_core_query_parameter.jar"); - } - warResURL = Client2.class.getResource("/com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_query_parameter_puservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/puservlet_vehicle_web.xml"); - } + jpa_core_query_parameter_puservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); // Call the archive processor archiveProcessor.processWebArchive(jpa_core_query_parameter_puservlet_vehicle_web, Client2.class, warResURL); - // Par // the jar with the correct archive name JavaArchive jpa_core_query_parameter = ShrinkWrap.create(JavaArchive.class, "jpa_core_query_parameter.jar"); @@ -120,51 +100,12 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test ); // The persistence.xml descriptor URL parURL = Client2.class.getResource("persistence.xml"); - if(parURL != null) { - jpa_core_query_parameter.addAsManifestResource(parURL, "persistence.xml"); - } - // Add the Persistence mapping-file - URL mappingURL = Client2.class.getResource("myMappingFile.xml"); - if(mappingURL != null) { - jpa_core_query_parameter.addAsResource(mappingURL, "myMappingFile.xml"); - } - mappingURL = Client2.class.getResource("myMappingFile1.xml"); - if(mappingURL != null) { - jpa_core_query_parameter.addAsResource(mappingURL, "myMappingFile1.xml"); - } - mappingURL = Client2.class.getResource("myMappingFile2.xml"); - if(mappingURL != null) { - jpa_core_query_parameter.addAsResource(mappingURL, "myMappingFile2.xml"); - } + jpa_core_query_parameter.addAsManifestResource(parURL, "persistence.xml"); // Call the archive processor archiveProcessor.processParArchive(jpa_core_query_parameter, Client2.class, parURL); - parURL = Client2.class.getResource("orm.xml"); - if(parURL != null) { - jpa_core_query_parameter.addAsManifestResource(parURL, "orm.xml"); - } - - // Ear - EnterpriseArchive jpa_core_query_parameter_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_query_parameter_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_core_query_parameter_vehicles_ear.addAsModule(jpa_core_query_parameter_puservlet_vehicle_web); + jpa_core_query_parameter_puservlet_vehicle_web.addAsLibrary(jpa_core_query_parameter); - jpa_core_query_parameter_vehicles_ear.addAsLibrary(jpa_core_query_parameter); - - - - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client2.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_core_query_parameter_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_query_parameter_vehicles_ear, Client2.class, earResURL); - return jpa_core_query_parameter_vehicles_ear; + return jpa_core_query_parameter_puservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/pluggability/contracts/resource_local/ClientPuservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/pluggability/contracts/resource_local/ClientPuservletTest.java index dcf9d93c5f..829f6997ff 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/pluggability/contracts/resource_local/ClientPuservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/pluggability/contracts/resource_local/ClientPuservletTest.java @@ -2,6 +2,8 @@ import ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local.Client; import java.net.URL; + +import ee.jakarta.tck.persistence.jpa.ee.packaging.jar.C; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.OperateOnDeployment; import org.jboss.arquillian.container.test.api.OverProtocol; @@ -48,7 +50,7 @@ public class ClientPuservletTest extends ee.jakarta.tck.persistence.ee.pluggabil @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive pluggability_contracts_resource_local_puservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "pluggability_contracts_resource_local_puservlet_vehicle_web.war"); @@ -75,77 +77,48 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test ); // The web.xml descriptor URL warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.xml"); - if(warResURL != null) { - pluggability_contracts_resource_local_puservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); - } + pluggability_contracts_resource_local_puservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); // The sun-web.xml descriptor - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.war.sun-web.xml"); - if(warResURL != null) { - pluggability_contracts_resource_local_puservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); - } - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/jpa/ee/pluggability/contracts/resource_local/pluggability_contracts_resource_local.jar"); - if(warResURL != null) { - pluggability_contracts_resource_local_puservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/lib/pluggability_contracts_resource_local.jar"); - } - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.xml"); - if(warResURL != null) { - pluggability_contracts_resource_local_puservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/puservlet_vehicle_web.xml"); - } - + warResURL = null; // Call the archive processor archiveProcessor.processWebArchive(pluggability_contracts_resource_local_puservlet_vehicle_web, Client.class, warResURL); // Par - // the jar with the correct archive name - JavaArchive pluggability_contracts_resource_local = ShrinkWrap.create(JavaArchive.class, "pluggability_contracts_resource_local.jar"); - // The class files - pluggability_contracts_resource_local.addClasses( - ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local.Order4.class, - ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local.Order.class, - ee.jakarta.tck.persistence.common.pluggability.util.LogRecordEntry.class, - ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local.Order3.class, - ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local.Order2.class, - ee.jakarta.tck.persistence.common.pluggability.util.LogFileProcessor.class - ); - // The persistence.xml descriptor - URL parURL = Client.class.getResource("persistence.xml"); - if(parURL != null) { - pluggability_contracts_resource_local.addAsManifestResource(parURL, "persistence.xml"); - } - // Call the archive processor - archiveProcessor.processParArchive(pluggability_contracts_resource_local, Client.class, parURL); - // The orm.xml file - parURL = Client.class.getResource("orm.xml"); - if(parURL != null) { - pluggability_contracts_resource_local.addAsManifestResource(parURL, "orm.xml"); - } - - // Ear - EnterpriseArchive pluggability_contracts_resource_local_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "pluggability_contracts_resource_local_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - pluggability_contracts_resource_local_vehicles_ear.addAsModule(pluggability_contracts_resource_local_puservlet_vehicle_web); - - pluggability_contracts_resource_local_vehicles_ear.addAsLibrary(pluggability_contracts_resource_local); - - - - // The application.xml descriptor - URL earResURL = Client.class.getResource("/com/sun/ts/tests/jpa/ee/pluggability/contracts/resource_local/"); - if(earResURL != null) { - pluggability_contracts_resource_local_vehicles_ear.addAsManifestResource(earResURL, "application.xml"); - } - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/com/sun/ts/tests/jpa/ee/pluggability/contracts/resource_local/.ear.sun-application.xml"); - if(earResURL != null) { - pluggability_contracts_resource_local_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(pluggability_contracts_resource_local_vehicles_ear, Client.class, earResURL); - return pluggability_contracts_resource_local_vehicles_ear; + JavaArchive pluggability_contracts_resource_local = ShrinkWrap.create(JavaArchive.class, "pluggability_contracts_resource_local.jar"); + // The class files + pluggability_contracts_resource_local.addClasses( + ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local.Order4.class, + ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local.Order.class, + ee.jakarta.tck.persistence.common.pluggability.util.LogRecordEntry.class, + ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local.Order3.class, + ee.jakarta.tck.persistence.ee.pluggability.contracts.resource_local.Order2.class, + ee.jakarta.tck.persistence.common.pluggability.util.LogFileProcessor.class + ); + // The persistence.xml descriptor + URL parURL = Client.class.getResource("persistence.xml"); + if(parURL != null) { + pluggability_contracts_resource_local.addAsManifestResource(parURL, "persistence.xml"); + } + // Call the archive processor + archiveProcessor.processParArchive(pluggability_contracts_resource_local, Client.class, parURL); + // The orm.xml file + parURL = Client.class.getResource("orm.xml"); + pluggability_contracts_resource_local.addAsManifestResource(parURL, "orm.xml"); + // Mapping files + parURL = Client.class.getResource("myMappingFile1.xml"); + pluggability_contracts_resource_local.addAsManifestResource(parURL, "myMappingFile1.xml"); + parURL = Client.class.getResource("myMappingFile2.xml"); + pluggability_contracts_resource_local.addAsManifestResource(parURL, "myMappingFile2.xml"); + pluggability_contracts_resource_local_puservlet_vehicle_web.addAsLibrary(pluggability_contracts_resource_local); + + // jpa_alternate_provider.jar + JavaArchive jpa_alternate_provider = ShrinkWrap.create(JavaArchive.class, "jpa_alternate_provider.jar"); + jpa_alternate_provider.addPackage("ee.jakarta.tck.persistence.common.pluggability.altprovider.implementation"); + parURL = Client.class.getResource("/ee/jakarta/tck/persistence/common/pluggability/altprovider/METAINF/services/jakarta.persistence.spi.PersistenceProvider"); + jpa_alternate_provider.addAsServiceProvider(jakarta.persistence.spi.PersistenceProvider.class, ee.jakarta.tck.persistence.common.pluggability.altprovider.implementation.PersistenceProvider.class); + pluggability_contracts_resource_local_puservlet_vehicle_web.addAsLibrary(jpa_alternate_provider); + + return pluggability_contracts_resource_local_puservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/Client.java b/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/Client.java index 785850af83..2674c30581 100644 --- a/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/Client.java +++ b/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/criteriaapi/CriteriaDelete/Client.java @@ -20,8 +20,10 @@ import java.util.ArrayList; import java.util.Collection; import java.util.List; +import java.util.Properties; import com.sun.ts.lib.harness.Status; +import com.sun.ts.lib.util.TestUtil; import ee.jakarta.tck.persistence.common.schema30.Util; @@ -45,7 +47,17 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } - + public void setup(String[] args, Properties p) throws Fault { + TestUtil.logTrace("setup"); + try { + super.setup(args, p); + removeTestData(); + createProductData(); + } catch (Exception e) { + TestUtil.logErr("Exception: ", e); + throw new Fault("setup failed:", e); + } + } /* * @testName: fromClassTest * diff --git a/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2.java b/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2.java index 406a82a845..71e9db0902 100644 --- a/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2.java +++ b/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/query/parameter/Client2.java @@ -20,7 +20,10 @@ import java.util.List; import java.util.Properties; +import com.sun.ts.lib.harness.CleanupMethod; +import com.sun.ts.lib.harness.SetupMethod; import com.sun.ts.lib.harness.Status; +import com.sun.ts.lib.util.TestUtil; import ee.jakarta.tck.persistence.common.PMClientBase; import jakarta.persistence.Query; @@ -43,12 +46,26 @@ public void setup(String[] args, Properties p) throws Exception { logTrace( "setupEmployee"); try { super.setup(args,p); - createEmployeeData(); + getEntityManager(); } catch (Exception e) { logErr( "Exception: ", e); throw new Exception("Setup failed:", e); } } + public void setupEmployee(String[] args, Properties p) throws Fault { + TestUtil.logTrace("setupEmployee"); + try { + super.setup(args, p); + createEmployeeData(); + } catch (Exception e) { + TestUtil.logErr("Exception: ", e); + throw new Fault("Setup failed:", e); + } + } + public void cleanup() throws Exception { + TestUtil.logTrace("calling super.cleanup"); + super.cleanup(); + } /* * @testName: parameterPositionalTest @@ -59,7 +76,8 @@ public void setup(String[] args, Properties p) throws Exception { * @test_Strategy: Create a query with a having clause with a positional * parameter and retrieve information about the parameter. */ - + @SetupMethod(name = "setupEmployee") + @CleanupMethod(name = "cleanupEmployee") public void parameterPositionalTest() throws Exception { boolean pass = false; List result; @@ -98,7 +116,8 @@ public void parameterPositionalTest() throws Exception { * @test_Strategy: Create an update query with a positional parameter and * retrieve information about the parameter. */ - + @SetupMethod(name = "setupEmployee") + @CleanupMethod(name = "cleanupEmployee") public void parameterUpdateTest() throws Exception { boolean pass = false; String expectedPKs[]; @@ -141,7 +160,8 @@ public void parameterUpdateTest() throws Exception { * @test_Strategy: Create a query with a name parameter using different cases * and retrieve information about the parameter. */ - + @SetupMethod(name = "setupEmployee") + @CleanupMethod(name = "cleanupEmployee") public void parameterCaseTest() throws Exception { boolean pass = false; List result; @@ -179,7 +199,8 @@ public void parameterCaseTest() throws Exception { * @test_Strategy: Create a query using a name parameter twice and retrieve * information about the parameter. */ - + @SetupMethod(name = "setupEmployee") + @CleanupMethod(name = "cleanupEmployee") public void parameterNamedParameterTwiceTest() throws Exception { boolean pass = false; List result; From 2d8972f25cd64b1c16a13fdf3700cef5e36f517d Mon Sep 17 00:00:00 2001 From: Scott M Stark Date: Thu, 9 Jan 2025 19:49:23 -0600 Subject: [PATCH 02/13] Update the glassfish version to the lastest M9 release --- glassfish-runner/persistence-platform-tck/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glassfish-runner/persistence-platform-tck/pom.xml b/glassfish-runner/persistence-platform-tck/pom.xml index 12e9389ffd..701dd4435c 100644 --- a/glassfish-runner/persistence-platform-tck/pom.xml +++ b/glassfish-runner/persistence-platform-tck/pom.xml @@ -32,10 +32,10 @@ ${project.build.directory}/${glassfish.toplevel.dir} ${glassfish.home}/glassfish/lib - + glassfish8 - 8.0.0-JDK17-M5 + 8.0.0-JDK17-M9 org.apache.derby.jdbc.ClientDriver cts1 jdbc:derby://localhost:1527/derbyDB;create=true From 3daffb7f8f4627b8ff373d8ad64d504fe86ad57d Mon Sep 17 00:00:00 2001 From: Arjan Tijms Date: Fri, 10 Jan 2025 11:40:38 +0100 Subject: [PATCH 03/13] Give arquillian modules their own parent That way we can more easily release these for consumption by TCKs outside the platform TCK project. Additionally the advantage is that the huge amount of dependencies and settings in the parent will not be on the path of arquillian now. --- arquillian/appclient/pom.xml | 15 +------ arquillian/common/pom.xml | 14 +------ arquillian/javatest/pom.xml | 18 +-------- arquillian/pom.xml | 70 +++++++++++++++++++++++++++------ arquillian/porting-lib/pom.xml | 15 +------ arquillian/protocol-lib/pom.xml | 24 ++++------- 6 files changed, 72 insertions(+), 84 deletions(-) diff --git a/arquillian/appclient/pom.xml b/arquillian/appclient/pom.xml index 8a2b0eab0c..14e165858e 100644 --- a/arquillian/appclient/pom.xml +++ b/arquillian/appclient/pom.xml @@ -1,31 +1,21 @@ - - - + 4.0.0 - jakarta.tck tck.arquillian.parent 11.0.0-SNAPSHOT - ../pom.xml jakarta.tck.arquillian arquillian-protocol-appclient + Arquillian Protocol AppClient Protocol handler for communicating using console output - - - - - - - jakarta.tck.arquillian arquillian-protocol-common @@ -62,5 +52,4 @@ test - diff --git a/arquillian/common/pom.xml b/arquillian/common/pom.xml index 36dab49f31..2dd187cad6 100644 --- a/arquillian/common/pom.xml +++ b/arquillian/common/pom.xml @@ -1,31 +1,21 @@ - - - + 4.0.0 - jakarta.tck tck.arquillian.parent 11.0.0-SNAPSHOT - ../pom.xml jakarta.tck.arquillian arquillian-protocol-common + Arquillian Protocol Common Common classes used by the protocols - - - - - - - org.jboss.arquillian.test arquillian-test-spi diff --git a/arquillian/javatest/pom.xml b/arquillian/javatest/pom.xml index c18ed428bf..d06b94dfff 100644 --- a/arquillian/javatest/pom.xml +++ b/arquillian/javatest/pom.xml @@ -1,34 +1,21 @@ - - - + 4.0.0 - jakarta.tck tck.arquillian.parent 11.0.0-SNAPSHOT - ../pom.xml jakarta.tck.arquillian arquillian-protocol-javatest + Arquillian Protocol JavaTest Protocol handler for communicating JavaTest CTS Vehicles - - - - 11.0.0-SNAPSHOT - - 17 - - - - jakarta.tck.arquillian arquillian-protocol-common @@ -56,7 +43,6 @@ org.jboss.shrinkwrap.descriptors shrinkwrap-descriptors-spi - ${shrinkwrap.descriptors.version} compile diff --git a/arquillian/pom.xml b/arquillian/pom.xml index d56f98f239..3561a9567d 100644 --- a/arquillian/pom.xml +++ b/arquillian/pom.xml @@ -1,20 +1,20 @@ - - - + 4.0.0 - - jakarta.tck + org.eclipse.ee4j project - 11.0.0-SNAPSHOT + 1.0.9 + jakarta.tck tck.arquillian.parent + 11.0.0-SNAPSHOT pom + Arquillian Jakarta TCK Parent Protocols and testenrichers for Jakarta TCKs @@ -27,18 +27,62 @@ - scm:git:https://github.com/eclipse-ee4j/jakartaee-tck-tools - scm:git:https://github.com/eclipse-ee4j/jakartaee-tck-tools + scm:git:https://github.com/jakartaee/platform-tck + scm:git:https://github.com/jakartaee/platform-tck master - https://github.com/eclipse-ee4j/jakartaee-tck-tools/tools/arquillian + http://github.com/jakartaee/platform-tck - - 17 - - 1.9.1.Final + 11.0.0-M2 + + + + org.jboss.arquillian + arquillian-bom + 1.9.1.Final + pom + import + + + + org.jboss.shrinkwrap + shrinkwrap-bom + 2.0.0-beta-2 + pom + import + + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-bom + 2.0.0 + pom + import + + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-depchain + 3.1.1 + pom + + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-impl-maven + 3.1.1 + + + + + + org.junit.jupiter + junit-jupiter + 5.11.3 + + diff --git a/arquillian/porting-lib/pom.xml b/arquillian/porting-lib/pom.xml index 5aa44e0090..d7d51685ad 100644 --- a/arquillian/porting-lib/pom.xml +++ b/arquillian/porting-lib/pom.xml @@ -1,31 +1,21 @@ - - - + 4.0.0 - jakarta.tck tck.arquillian.parent 11.0.0-SNAPSHOT - ../pom.xml jakarta.tck.arquillian tck-porting-lib + Jakarta TCK Porting Lib Common Arquillian SPI classes used vendors to add implementation details - - - - - - - org.jboss.arquillian.test arquillian-test-spi @@ -35,5 +25,4 @@ arquillian-container-spi - diff --git a/arquillian/protocol-lib/pom.xml b/arquillian/protocol-lib/pom.xml index 1b4694a32a..c949a72022 100644 --- a/arquillian/protocol-lib/pom.xml +++ b/arquillian/protocol-lib/pom.xml @@ -1,28 +1,19 @@ - - - + 4.0.0 - jakarta.tck tck.arquillian.parent 11.0.0-SNAPSHOT - ../pom.xml jakarta.tck.arquillian arquillian-protocol-lib - Arquillian Protocol Lib - - - 11.0.0-SNAPSHOT - + Arquillian Protocol Lib - jakarta.tck @@ -38,13 +29,12 @@ - - + This combines the TCK vehicle related classes into a protocol.jar that is + included in the test deployments by the JavaTestDeploymentPackager class. + --> org.apache.maven.plugins maven-dependency-plugin 3.6.1 From 6c12f8c84a6f9fea6723f7f908dc1cbad0b357a8 Mon Sep 17 00:00:00 2001 From: Arjan Tijms Date: Fri, 10 Jan 2025 15:01:02 +0100 Subject: [PATCH 04/13] Provide the Enterprise-beans TCK with its own parent --- tcks/apis/enterprise-beans/ejb30/pom.xml | 45 +++++++++++++++--------- tcks/apis/enterprise-beans/ejb32/pom.xml | 45 +++++++++++++++--------- tcks/apis/transactions/pom.xml | 1 + 3 files changed, 57 insertions(+), 34 deletions(-) diff --git a/tcks/apis/enterprise-beans/ejb30/pom.xml b/tcks/apis/enterprise-beans/ejb30/pom.xml index 1867f0eaed..741f1d0691 100644 --- a/tcks/apis/enterprise-beans/ejb30/pom.xml +++ b/tcks/apis/enterprise-beans/ejb30/pom.xml @@ -16,23 +16,26 @@ SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 --> - + 4.0.0 - jakarta.tck + org.eclipse.ee4j project - 11.0.0-SNAPSHOT - ../../../../pom.xml + 1.0.9 + + jakarta.tck ejb30 + 4.0.0-SNAPSHOT jar ejb30 ejb30 + 17 ${project.build.directory}/jaxws/stale @@ -40,89 +43,107 @@ jakarta.tck libutil + 11.0.0-M2 jakarta.tck common + 11.0.0-M2 org.apache.commons commons-lang3 + 3.9 jakarta.ejb jakarta.ejb-api + 4.0.1 jakarta.jms jakarta.jms-api + 3.1.0 jakarta.annotation jakarta.annotation-api + 2.1.1 jakarta.interceptor jakarta.interceptor-api + 2.2.0 jakarta.inject jakarta.inject-api + 2.0.1.MR jakarta.servlet jakarta.servlet-api + 6.0.0 jakarta.persistence jakarta.persistence-api + 3.2.0 jakarta.mail jakarta.mail-api + 2.1.3 jakarta.enterprise jakarta.enterprise.cdi-api + 4.1.0 jakarta.validation jakarta.validation-api + 3.1.0 jakarta.faces jakarta.faces-api + 4.1.0 jakarta.servlet.jsp jakarta.servlet.jsp-api + 4.0.0 org.jboss.shrinkwrap shrinkwrap-impl-base + 2.0.0-beta-2 org.jboss.arquillian.junit5 arquillian-junit5-core + 1.9.1.Final org.jboss.arquillian.container arquillian-container-test-api + 1.9.1.Final jakarta.tck.arquillian arquillian-protocol-common - ${arquillian.jakarta.tck.version} + 11.0.0-M1 jakarta.tck.arquillian tck-porting-lib + 11.0.0-M1 - - + src/main/java @@ -138,15 +159,5 @@ - - - - maven-deploy-plugin - - true - - - - diff --git a/tcks/apis/enterprise-beans/ejb32/pom.xml b/tcks/apis/enterprise-beans/ejb32/pom.xml index b2a760d8f2..84548da142 100644 --- a/tcks/apis/enterprise-beans/ejb32/pom.xml +++ b/tcks/apis/enterprise-beans/ejb32/pom.xml @@ -16,64 +16,85 @@ SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 --> - + 4.0.0 - jakarta.tck + org.eclipse.ee4j project - 11.0.0-SNAPSHOT - ../../../../pom.xml + 1.0.9 + + jakarta.tck ejb32 + 4.0.0-SNAPSHOT jar EJB32 EJB32 + + 17 + 4.0.0-SNAPSHOT + + jakarta.tck ejb30 + ${ejb30.version} jakarta.ejb jakarta.ejb-api + 4.0.1 jakarta.annotation jakarta.annotation-api + 2.1.1 jakarta.interceptor jakarta.interceptor-api + 2.2.0 jakarta.inject jakarta.inject-api + 2.0.1.MR jakarta.enterprise jakarta.enterprise.cdi-api + 4.1.0 org.apache.commons commons-lang3 + 3.9 jakarta.tck.arquillian arquillian-protocol-common - ${arquillian.jakarta.tck.version} + 11.0.0-M1 jakarta.tck.arquillian tck-porting-lib + 11.0.0-M1 + + + + org.junit.platform + junit-platform-suite-api + 1.11.3 - - + + src/main/java @@ -87,15 +108,5 @@ - - - - - maven-deploy-plugin - - true - - - diff --git a/tcks/apis/transactions/pom.xml b/tcks/apis/transactions/pom.xml index 983b9a03de..b91b9e16a3 100644 --- a/tcks/apis/transactions/pom.xml +++ b/tcks/apis/transactions/pom.xml @@ -64,6 +64,7 @@ ${project.groupId} ejb30 + 4.0.0-SNAPSHOT jakarta.transaction From 645b8863a36ee5a146fb15ad259133887c8d9193 Mon Sep 17 00:00:00 2001 From: Arjan Tijms Date: Sat, 11 Jan 2025 14:43:49 +0100 Subject: [PATCH 05/13] Fix runner pom * Download pre-compiled EJB TCK zip * Fix parents --- .../enterprise-beans-tck-install/pom.xml | 68 +++++++++---------- .../enterprise-beans-tck-run/pom.xml | 14 ++-- glassfish-runner/enterprise-beans-tck/pom.xml | 7 +- 3 files changed, 43 insertions(+), 46 deletions(-) diff --git a/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-install/pom.xml b/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-install/pom.xml index 243a9d5504..ffd9de0a2f 100644 --- a/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-install/pom.xml +++ b/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-install/pom.xml @@ -1,7 +1,7 @@ - tck_full_build + install-enterprise-beans-tck-ejb30 - run + install-file - generate-resources + process-resources - true - ${project.build.directory}/platform-tck-main - - pom.xml - - clean install + ${project.build.directory}/ejb30/target/ejb30-${tck.test.enterprise-beans.version}.jar + jakarta.tck + ejb30 + ${tck.test.enterprise-beans.version} + jar - - ejb_source + install-enterprise-beans-tck-ejb32 - run + install-file process-resources - true - ${project.build.directory}/platform-tck-main - - pom.xml - - clean source:jar install -pl ":ejb30" -pl ":ejb32" + ${project.build.directory}/ejb32/target/ejb32-${tck.test.enterprise-beans.version}.jar + jakarta.tck + ejb32 + ${tck.test.enterprise-beans.version} + jar + diff --git a/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-run/pom.xml b/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-run/pom.xml index 7de0c8fd4f..1444d22b92 100644 --- a/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-run/pom.xml +++ b/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-run/pom.xml @@ -25,9 +25,10 @@ 4.0.0 - org.glassfish - enterprise-beans-tck - 4.0.0-SNAPSHOT + org.eclipse.ee4j + project + 1.0.9 + enterprise-beans-tck-run @@ -64,7 +65,8 @@ 4.0.1 2.0.1 5.0.0 - 11.0.0-SNAPSHOT + 11.0.0-M2 + 4.0.0-M1 1.0.0-SNAPSHOT @@ -140,13 +142,13 @@ jakarta.tck ejb30 - ${version.jakarta.tck} + ${version.ejb.tck} test jakarta.tck ejb32 - ${version.jakarta.tck} + ${version.ejb.tck} test diff --git a/glassfish-runner/enterprise-beans-tck/pom.xml b/glassfish-runner/enterprise-beans-tck/pom.xml index 58c7c83aca..83bc8b735b 100644 --- a/glassfish-runner/enterprise-beans-tck/pom.xml +++ b/glassfish-runner/enterprise-beans-tck/pom.xml @@ -20,9 +20,10 @@ 4.0.0 - org.glassfish - standalone-tck - 11.0.0-SNAPSHOT + org.eclipse.ee4j + project + 1.0.9 + enterprise-beans-tck From fc697302c7011ea5c1895c4e9162f1487ccc870d Mon Sep 17 00:00:00 2001 From: Arjan Tijms Date: Sat, 11 Jan 2025 17:28:14 +0100 Subject: [PATCH 06/13] Update pom.xml Set arquillian to non-snapshot version --- .../enterprise-beans-tck/enterprise-beans-tck-run/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-run/pom.xml b/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-run/pom.xml index 1444d22b92..48d538c61a 100644 --- a/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-run/pom.xml +++ b/glassfish-runner/enterprise-beans-tck/enterprise-beans-tck-run/pom.xml @@ -67,7 +67,7 @@ 5.0.0 11.0.0-M2 4.0.0-M1 - 1.0.0-SNAPSHOT + 11.0.0-M1 From 0dc33057d2a9d8b6ae74b908c8c31f70330c4ffe Mon Sep 17 00:00:00 2001 From: Scott M Stark Date: Sat, 11 Jan 2025 14:26:15 -0600 Subject: [PATCH 07/13] Set ee.tck.version to 11.0.0-SNAPSHOT Fixes #1744 Signed-off-by: Scott M Stark --- arquillian/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arquillian/pom.xml b/arquillian/pom.xml index 3561a9567d..5b0702a8f6 100644 --- a/arquillian/pom.xml +++ b/arquillian/pom.xml @@ -35,7 +35,7 @@ 17 - 11.0.0-M2 + 11.0.0-SNAPSHOT From 0c6c69409898aeffebd19ccf62083028fe532b20 Mon Sep 17 00:00:00 2001 From: Arjan Tijms Date: Sun, 12 Jan 2025 15:03:23 +0100 Subject: [PATCH 08/13] Shorten and tidy the GF persistence runner TCK somewhat --- .../persistence-platform-tck/pom.xml | 158 ++++++------------ .../sql/derby/derby.ddl.sql | 31 ++++ 2 files changed, 85 insertions(+), 104 deletions(-) diff --git a/glassfish-runner/persistence-platform-tck/pom.xml b/glassfish-runner/persistence-platform-tck/pom.xml index 701dd4435c..1ec86d1682 100644 --- a/glassfish-runner/persistence-platform-tck/pom.xml +++ b/glassfish-runner/persistence-platform-tck/pom.xml @@ -32,20 +32,11 @@ ${project.build.directory}/${glassfish.toplevel.dir} ${glassfish.home}/glassfish/lib - + glassfish8 8.0.0-JDK17-M9 - org.apache.derby.jdbc.ClientDriver - cts1 - jdbc:derby://localhost:1527/derbyDB;create=true - cts1 - org.eclipse.persistence.jpa.PersistenceProvider 11.0.0-M2 - ${glassfish.home}/javadb/lib - ${project.build.directory}/${glassfish.toplevel.dir}/javadb/lib/derbyclient.jar:${project.build.directory}/${glassfish.toplevel.dir}/javadb/lib/derbyshared.jar:${project.build.directory}/${glassfish.toplevel.dir}/javadb/lib/derbytools.jar - ${javadb.lib}/derbyclient.jar:${javadb.lib}/derbyshared.jar:${javadb.lib}/derbytools.jar - jdbc:derby://localhost:1527/derbyDB;create=true 5.11.3 persistence-platform-tck-tests @@ -277,6 +268,20 @@ + + + ${project.build.directory}/sql + true + ${project.basedir}/sql/derby + + *.sql + + + + src/main/resources + + + org.apache.maven.plugins @@ -384,90 +389,6 @@ - - org.codehaus.mojo - exec-maven-plugin - - - start-database - - exec - - pre-integration-test - - ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin - - start-database - - - - - - stop-database-final - - exec - - post-integration-test - - ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin - - stop-database - - - 0 - 1 - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - initdb - - run - - pre-integration-test - - - - - - - - - - - - - install_java_procedures - - run - - pre-integration-test - - - - - - - CALL sqlj.remove_jar('APP.dbprocedures', 0); - CALL sqlj.install_jar('${project.build.directory}/dbprocedures.jar', 'APP.dbprocedures', 0); - CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', 'APP.dbprocedures'); - - - - - - - maven-failsafe-plugin 3.5.0 @@ -476,19 +397,19 @@ jakarta.tck:persistence-platform-tck-tests - + ${basedir}/sql/derby/password.txt ${project.build.directory}/${glassfish.toplevel.dir} set server-config.network-config.protocols.protocol.http-listener-1.http.trace-enabled=true create-file-user --groups guest --passwordfile ${project.basedir}/javajoe.pass javajoe create-file-user --groups staff:mgr --passwordfile ${project.basedir}/j2ee.pass j2ee - create-jdbc-connection-pool --restype javax.sql.DataSource --datasourceclassname org.apache.derby.jdbc.ClientDataSource --property DatabaseName=derbyDB:serverName=localhost:PortNumber=1527:User=cts1:Password=cts1 --steadypoolsize 32 --maxpoolsize 64 cts-derby-pool + create-jdbc-connection-pool --restype javax.sql.DataSource --datasourceclassname org.apache.derby.jdbc.ClientDataSource --property DatabaseName=${glassfish.home}/glassfish/domains/domain1/config/derbyDB:serverName=localhost:portNumber=1527:user=cts1:password=cts1 --steadypoolsize 32 --maxpoolsize 64 cts-derby-pool + create-jdbc-connection-pool --restype javax.sql.DataSource --datasourceclassname org.apache.derby.jdbc.ClientDataSource --property DatabaseName=${glassfish.home}/glassfish/domains/domain1/config/derbyDB:serverName=localhost:PortNumber=1527:User=cts1:Password=cts1 --steadypoolsize 32 --maxpoolsize 64 cts-derby-pool_no_tx create-jdbc-resource --connectionpoolid cts-derby-pool jdbc/DB1 - create-jdbc-connection-pool --restype javax.sql.DataSource --datasourceclassname org.apache.derby.jdbc.ClientDataSource --property DatabaseName=derbyDB:serverName=localhost:PortNumber=1527:User=cts1:Password=cts1 --steadypoolsize 32 --maxpoolsize 64 cts-derby-pool_no_tx create-jdbc-resource --connectionpoolid cts-derby-pool_no_tx jdbc/DB_no_tx list-jdbc-connection-pools list-jdbc-resources @@ -501,6 +422,7 @@ + - tck-appclient @@ -520,6 +440,7 @@ + --> jpa-tests-cdi @@ -546,11 +467,8 @@ - ee/jakarta/tck/persistence/core/StoredProcedureQuery/Client1PmservletTest.java - - tck-javatest @@ -601,5 +519,37 @@ web + + appclient + + + + + maven-failsafe-plugin + 3.5.0 + + + + jpa-tests-appclient + + integration-test + verify + + + + ee/jakarta/tck/persistence/**/*Test.java + + tck-appclient + + + appclient-arquillian.xml + + + + + + + + diff --git a/glassfish-runner/persistence-platform-tck/sql/derby/derby.ddl.sql b/glassfish-runner/persistence-platform-tck/sql/derby/derby.ddl.sql index b27b5a1490..0fc914bbdd 100644 --- a/glassfish-runner/persistence-platform-tck/sql/derby/derby.ddl.sql +++ b/glassfish-runner/persistence-platform-tck/sql/derby/derby.ddl.sql @@ -1,3 +1,31 @@ +DROP PROCEDURE GetEmpOneFirstNameFromOut; +CREATE PROCEDURE GetEmpOneFirstNameFromOut (out OUT_PARAM VARCHAR(255)) language java external name 'ee.jakarta.tck.persistence.storedprocedures.CS_Procs.GetEmpOneFirstNameFromOut' parameter style java; + +DROP PROCEDURE GetEmpFirstNameFromOut; +CREATE PROCEDURE GetEmpFirstNameFromOut (in IN_PARAM INTEGER, out OUT_PARAM VARCHAR(255)) language java external name 'ee.jakarta.tck.persistence.storedprocedures.CS_Procs.GetEmpFirstNameFromOut' parameter style java; + +DROP PROCEDURE GetEmpLastNameFromInOut; +CREATE PROCEDURE GetEmpLastNameFromInOut (inout INOUT_PARAM VARCHAR(255)) language java external name 'ee.jakarta.tck.persistence.storedprocedures.CS_Procs.GetEmpLastNameFromInOut' parameter style java; + +DROP PROCEDURE GetEmpASCFromRS; +CREATE PROCEDURE GetEmpASCFromRS() language java dynamic result sets 1 external name 'ee.jakarta.tck.persistence.storedprocedures.CS_Procs.GetEmpASCFromRS' parameter style java; + +DROP PROCEDURE GetEmpIdFNameLNameFromRS; +CREATE PROCEDURE GetEmpIdFNameLNameFromRS (in IN_PARAM INTEGER) language java dynamic result sets 1 external name 'ee.jakarta.tck.persistence.storedprocedures.CS_Procs.GetEmpIdFNameLNameFromRS' parameter style java; + +DROP PROCEDURE GetEmpIdUsingHireDateFromOut; +CREATE PROCEDURE GetEmpIdUsingHireDateFromOut (in IN_PARAM DATE, out OUT_PARAM INTEGER) language java external name 'ee.jakarta.tck.persistence.storedprocedures.CS_Procs.GetEmpIdUsingHireDateFromOut' parameter style java; + +DROP PROCEDURE UpdateEmpSalaryColumn; +CREATE PROCEDURE UpdateEmpSalaryColumn() language java external name 'ee.jakarta.tck.persistence.storedprocedures.CS_Procs.UpdateEmpSalaryColumn' parameter style java; + +DROP PROCEDURE DeleteAllEmp; +CREATE PROCEDURE DeleteAllEmp() language java external name 'ee.jakarta.tck.persistence.storedprocedures.CS_Procs.DeleteAllEmp' parameter style java; + +DROP FUNCTION REPLACE; +CREATE FUNCTION REPLACE (origin_string VARCHAR(255), old_string VARCHAR(255), new_string VARCHAR(255)) RETURNS VARCHAR(255) language java external name 'ee.jakarta.tck.persistence.storedprocedures.CS_Procs.ReplaceString' parameter style java; + + ALTER TABLE PHONE_TABLE DROP CONSTRAINT FK_FOR_ADDRESS ; ALTER TABLE CUSTOMER_TABLE DROP CONSTRAINT FK5_FOR_CUST ; ALTER TABLE CUSTOMER_TABLE DROP CONSTRAINT FK6_FOR_CUST ; @@ -943,3 +971,6 @@ CREATE TABLE CRITERIA_TEST_COLTABLE(ENT_ID INTEGER NOT NULL, COLVAL VARCHAR(255) DROP TABLE UUIDTYPE; CREATE TABLE UUIDTYPE (ID char(16) for bit data NOT NULL, NAME VARCHAR(255), PRIMARY KEY (ID)); + +CALL sqlj.install_jar('${project.build.directory}/dbprocedures.jar', 'APP.dbprocedures', 0); +CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', 'APP.dbprocedures'); From a3aacb137f60905feb161af668ad28fa88ed9bab Mon Sep 17 00:00:00 2001 From: Arjan Tijms Date: Sun, 12 Jan 2025 21:22:07 +0100 Subject: [PATCH 09/13] Fix entityManagerFactoryCloseExceptions.ClientPmservletTest persistence.xml was missing AND added to the wrong folder --- .../persistence-platform-tck/pom.xml | 2 +- .../ClientPmservletTest.java | 226 +++++++++--------- .../persistence.xml | 44 ++++ 3 files changed, 163 insertions(+), 109 deletions(-) create mode 100644 tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/persistence.xml diff --git a/glassfish-runner/persistence-platform-tck/pom.xml b/glassfish-runner/persistence-platform-tck/pom.xml index 1ec86d1682..3a6f57c13f 100644 --- a/glassfish-runner/persistence-platform-tck/pom.xml +++ b/glassfish-runner/persistence-platform-tck/pom.xml @@ -467,7 +467,7 @@ - ee/jakarta/tck/persistence/core/StoredProcedureQuery/Client1PmservletTest.java + ee/jakarta/tck/persistence/**/*Test.java tck-javatest diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPmservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPmservletTest.java index 51e6d43b03..0d3232e77c 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPmservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPmservletTest.java @@ -1,16 +1,28 @@ package ee.jakarta.tck.persistence.core.entityManagerFactoryCloseExceptions; -import ee.jakarta.tck.persistence.core.entityManagerFactoryCloseExceptions.Client; +import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.ServiceEETest; +import com.sun.ts.tests.common.vehicle.VehicleClient; +import com.sun.ts.tests.common.vehicle.VehicleRunnable; +import com.sun.ts.tests.common.vehicle.VehicleRunnerFactory; +import com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareBaseBean; +import com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareIF; +import com.sun.ts.tests.common.vehicle.ejb3share.EntityTransactionWrapper; +import com.sun.ts.tests.common.vehicle.ejb3share.NoopTransactionWrapper; +import com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManager; +import com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManagerFactory; +import com.sun.ts.tests.common.vehicle.ejb3share.UserTransactionWrapper; +import com.sun.ts.tests.common.vehicle.pmservlet.PMServletVehicle; +import com.sun.ts.tests.common.vehicle.servlet.ServletVehicle; + import java.net.URL; + import org.jboss.arquillian.container.test.api.Deployment; -import org.jboss.arquillian.container.test.api.OperateOnDeployment; import org.jboss.arquillian.container.test.api.OverProtocol; import org.jboss.arquillian.container.test.api.TargetsContainer; import org.jboss.arquillian.junit5.ArquillianExtension; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.shrinkwrap.api.ShrinkWrap; -import org.jboss.shrinkwrap.api.asset.StringAsset; -import org.jboss.shrinkwrap.api.exporter.ZipExporter; import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.jboss.shrinkwrap.api.spec.WebArchive; @@ -19,131 +31,129 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestMethodOrder; import org.junit.jupiter.api.extension.ExtendWith; + +import ee.jakarta.tck.persistence.common.PMClientBase; import tck.arquillian.porting.lib.spi.TestArchiveProcessor; import tck.arquillian.protocol.common.TargetVehicle; - - @ExtendWith(ArquillianExtension.class) @Tag("persistence") @Tag("platform") @Tag("web") @Tag("tck-javatest") - @TestMethodOrder(MethodOrderer.MethodName.class) -public class ClientPmservletTest extends ee.jakarta.tck.persistence.core.entityManagerFactoryCloseExceptions.Client { +public class ClientPmservletTest extends Client { + + private static final long serialVersionUID = 1L; static final String VEHICLE_ARCHIVE = "jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle"; - /** - EE10 Deployment Descriptors: - jpa_core_entityManagerFactoryCloseException: META-INF/persistence.xml - jpa_core_entityManagerFactoryCloseException_appmanaged_vehicle_client: META-INF/application-client.xml - jpa_core_entityManagerFactoryCloseException_appmanaged_vehicle_ejb: jar.sun-ejb-jar.xml - jpa_core_entityManagerFactoryCloseException_appmanagedNoTx_vehicle_client: META-INF/application-client.xml - jpa_core_entityManagerFactoryCloseException_appmanagedNoTx_vehicle_ejb: jar.sun-ejb-jar.xml - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web: WEB-INF/web.xml - jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web: WEB-INF/web.xml - jpa_core_entityManagerFactoryCloseException_stateful3_vehicle_client: META-INF/application-client.xml - jpa_core_entityManagerFactoryCloseException_stateful3_vehicle_ejb: jar.sun-ejb-jar.xml - jpa_core_entityManagerFactoryCloseException_stateless3_vehicle_client: META-INF/application-client.xml - jpa_core_entityManagerFactoryCloseException_stateless3_vehicle_ejb: jar.sun-ejb-jar.xml - jpa_core_entityManagerFactoryCloseException_vehicles: - - Found Descriptors: - War: - - /com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml - Ear: - - */ - @TargetsContainer("tck-javatest") - @OverProtocol("javatest") - @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + /** + * EE10 Deployment Descriptors: jpa_core_entityManagerFactoryCloseException: META-INF/persistence.xml + * jpa_core_entityManagerFactoryCloseException_appmanaged_vehicle_client: META-INF/application-client.xml + * jpa_core_entityManagerFactoryCloseException_appmanaged_vehicle_ejb: jar.sun-ejb-jar.xml + * jpa_core_entityManagerFactoryCloseException_appmanagedNoTx_vehicle_client: META-INF/application-client.xml + * jpa_core_entityManagerFactoryCloseException_appmanagedNoTx_vehicle_ejb: jar.sun-ejb-jar.xml + * jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web: WEB-INF/web.xml + * jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web: WEB-INF/web.xml + * jpa_core_entityManagerFactoryCloseException_stateful3_vehicle_client: META-INF/application-client.xml + * jpa_core_entityManagerFactoryCloseException_stateful3_vehicle_ejb: jar.sun-ejb-jar.xml + * jpa_core_entityManagerFactoryCloseException_stateless3_vehicle_client: META-INF/application-client.xml + * jpa_core_entityManagerFactoryCloseException_stateless3_vehicle_ejb: jar.sun-ejb-jar.xml + * jpa_core_entityManagerFactoryCloseException_vehicles: + * + * Found Descriptors: War: + * + * /com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml Ear: + * + */ + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + @Deployment(name = VEHICLE_ARCHIVE, order = 2) + public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War - // the war with the correct archive name - WebArchive jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.war"); - // The class files - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addClasses( - com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareBaseBean.class, - com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, - com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManager.class, - com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareIF.class, - com.sun.ts.lib.harness.EETest.Fault.class, - com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManagerFactory.class, - ee.jakarta.tck.persistence.common.PMClientBase.class, - com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.class, - com.sun.ts.tests.common.vehicle.VehicleRunnable.class, - com.sun.ts.tests.common.vehicle.ejb3share.UserTransactionWrapper.class, - com.sun.ts.lib.harness.EETest.class, - com.sun.ts.lib.harness.ServiceEETest.class, - com.sun.ts.tests.common.vehicle.ejb3share.EntityTransactionWrapper.class, - com.sun.ts.tests.common.vehicle.pmservlet.PMServletVehicle.class, - ee.jakarta.tck.persistence.core.entityManagerFactoryCloseExceptions.Client.class, - com.sun.ts.lib.harness.EETest.SetupException.class, - com.sun.ts.tests.common.vehicle.VehicleClient.class, - com.sun.ts.tests.common.vehicle.ejb3share.NoopTransactionWrapper.class - ); - // The web.xml descriptor - URL warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); - } - // The sun-web.xml descriptor - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.war.sun-web.xml"); - if(warResURL != null) { - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); - } - - // Any libraries added to the war - URL libURL; - JavaArchive jpa_core_entityManagerFactoryCloseException_lib = ShrinkWrap.create(JavaArchive.class, "jpa_core_entityManagerFactoryCloseException.jar"); - - // The resources - libURL = Client.class.getResource("persistence.xml"); - jpa_core_entityManagerFactoryCloseException_lib.addAsResource(libURL, "persistence.xml"); - - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsLibrary(jpa_core_entityManagerFactoryCloseException_lib); - - - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/pmservlet_vehicle_web.xml"); - } - - // Call the archive processor - archiveProcessor.processWebArchive(jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web, Client.class, warResURL); + // the war with the correct archive name + WebArchive jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web = + ShrinkWrap.create(WebArchive.class, "jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.war"); + + // The class files + jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addClasses( + EJB3ShareBaseBean.class, + VehicleRunnerFactory.class, + UseEntityManager.class, + EJB3ShareIF.class, + Fault.class, + UseEntityManagerFactory.class, + PMClientBase.class, + ServletVehicle.class, + VehicleRunnable.class, + UserTransactionWrapper.class, + EETest.class, + ServiceEETest.class, + EntityTransactionWrapper.class, + PMServletVehicle.class, + Client.class, + SetupException.class, VehicleClient.class, + NoopTransactionWrapper.class); + + // The web.xml descriptor + URL warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); + if (warResURL != null) { + jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); + } + + // The sun-web.xml descriptor + warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.war.sun-web.xml"); + if (warResURL != null) { + jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); + } + // Any libraries added to the war + JavaArchive jpa_core_entityManagerFactoryCloseException_lib = + ShrinkWrap.create(JavaArchive.class, "jpa_core_entityManagerFactoryCloseException.jar"); - // Ear - EnterpriseArchive jpa_core_entityManagerFactoryCloseException_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_entityManagerFactoryCloseException_vehicles.ear"); + // The resources + URL libURL = Client.class.getResource("persistence.xml"); + jpa_core_entityManagerFactoryCloseException_lib.addAsManifestResource(libURL, "persistence.xml"); - // Any libraries added to the ear + jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsLibrary(jpa_core_entityManagerFactoryCloseException_lib); - // The component jars built by the package target - jpa_core_entityManagerFactoryCloseException_vehicles_ear.addAsModule(jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web); + // Web content + warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); + if (warResURL != null) { + jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebResource(warResURL, + "/WEB-INF/pmservlet_vehicle_web.xml"); + } + // Call the archive processor + archiveProcessor.processWebArchive(jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web, Client.class, warResURL); + // Ear + EnterpriseArchive jpa_core_entityManagerFactoryCloseException_vehicles_ear = + ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_entityManagerFactoryCloseException_vehicles.ear"); - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_core_entityManagerFactoryCloseException_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_entityManagerFactoryCloseException_vehicles_ear, Client.class, earResURL); - return jpa_core_entityManagerFactoryCloseException_vehicles_ear; - } + // Any libraries added to the ear + + // The component jars built by the package target + jpa_core_entityManagerFactoryCloseException_vehicles_ear + .addAsModule(jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web); - @Test - @Override - @TargetVehicle("pmservlet") - public void exceptionsTest() throws java.lang.Exception { - super.exceptionsTest(); + // The sun-application.xml descriptor + URL earResURL = Client.class.getResource("/.ear.sun-application.xml"); + if (earResURL != null) { + jpa_core_entityManagerFactoryCloseException_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); } + // Call the archive processor + archiveProcessor.processEarArchive(jpa_core_entityManagerFactoryCloseException_vehicles_ear, Client.class, earResURL); + + return jpa_core_entityManagerFactoryCloseException_vehicles_ear; + } + + @Test + @Override + @TargetVehicle("pmservlet") + public void exceptionsTest() throws java.lang.Exception { + super.exceptionsTest(); + } } diff --git a/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/persistence.xml b/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/persistence.xml new file mode 100644 index 0000000000..784786a985 --- /dev/null +++ b/tcks/apis/persistence/persistence-inside-container/spec-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/persistence.xml @@ -0,0 +1,44 @@ + + + + + + + Persistence Unit for CTS Vehicle Tests + jdbc/DB1 + + + + Persistence Unit for CTS Vehicle Tests + jdbc/DB1 + + + + + The persistence.xml file may be used to designate more than one persistence + unit within the same scope. + + Persistence Unit for Application Managed Resource Local + jdbc/DB_no_tx + + \ No newline at end of file From 2696d32db2a2e931ac75fdfd6d8c19295660ea53 Mon Sep 17 00:00:00 2001 From: Arjan Tijms Date: Sun, 12 Jan 2025 23:06:00 +0100 Subject: [PATCH 10/13] Fix jpa.ee.packaging.jar.ClientPmservletTest (#1747) .java files were included for no reason but myMappingFile.xml etc were wrongly included --- .../persistence-platform-tck/pom.xml | 2 + .../jpa/ee/packaging/jar/Client.java | 14 +- .../ee/packaging/jar/ClientPmservletTest.java | 278 +++++++++--------- .../ee/packaging/jar/persistence.xml | 8 +- 4 files changed, 153 insertions(+), 149 deletions(-) diff --git a/glassfish-runner/persistence-platform-tck/pom.xml b/glassfish-runner/persistence-platform-tck/pom.xml index 3a6f57c13f..c0279a8697 100644 --- a/glassfish-runner/persistence-platform-tck/pom.xml +++ b/glassfish-runner/persistence-platform-tck/pom.xml @@ -453,6 +453,8 @@ ee/jakarta/tck/persistence/ee/cdi/*Test.java + ${cdi.skip} + rest-arquillian.xml diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/Client.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/Client.java index c90031d368..935ae79b1d 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/Client.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/Client.java @@ -33,7 +33,8 @@ public Client() { /* * @class.setup_props: */ - @BeforeEach + @Override + @BeforeEach public void setup() throws Exception { logTrace( "setup"); try { @@ -47,9 +48,9 @@ public void setup() throws Exception { /* * @testName: JarFileElementsTest - * + * * @assertion_ids: PERSISTENCE:SPEC:957 - * + * * @test_Strategy: With the above archive (jar-file elements), deploy, create * entities persist, then find. * @@ -64,11 +65,13 @@ public void JarFileElementsTest() throws Exception { getEntityManager().persist(a); logTrace( "persisted order " + a.toString()); } + for (int i = 1 + count; i <= count + count; i++) { C c = new C(Integer.toString(i), "name_" + Integer.toString(i), i); getEntityManager().persist(c); logTrace( "persisted order " + c.toString()); } + for (int i = 1; i <= count; i++) { B b = new B(Integer.toString(i), "name_" + Integer.toString(i), i); getEntityManager().persist(b); @@ -87,6 +90,7 @@ public void JarFileElementsTest() throws Exception { pass = false; } } + for (int i = 1 + count; i <= count + count; i++) { C c = getEntityManager().find(C.class, Integer.toString(i)); if (c != null) { @@ -96,6 +100,7 @@ public void JarFileElementsTest() throws Exception { pass = false; } } + for (int i = 1; i <= count; i++) { B b = getEntityManager().find(B.class, Integer.toString(i)); if (b != null) { @@ -110,7 +115,8 @@ public void JarFileElementsTest() throws Exception { } } - @BeforeEach + @Override + @BeforeEach public void cleanup() throws Exception { logTrace( "cleanup"); removeTestData(); diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/ClientPmservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/ClientPmservletTest.java index 40a6edd420..69eb992194 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/ClientPmservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/ClientPmservletTest.java @@ -1,16 +1,28 @@ package ee.jakarta.tck.persistence.jpa.ee.packaging.jar; -import ee.jakarta.tck.persistence.jpa.ee.packaging.jar.Client; +import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.ServiceEETest; +import com.sun.ts.tests.common.vehicle.VehicleClient; +import com.sun.ts.tests.common.vehicle.VehicleRunnable; +import com.sun.ts.tests.common.vehicle.VehicleRunnerFactory; +import com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareBaseBean; +import com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareIF; +import com.sun.ts.tests.common.vehicle.ejb3share.EntityTransactionWrapper; +import com.sun.ts.tests.common.vehicle.ejb3share.NoopTransactionWrapper; +import com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManager; +import com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManagerFactory; +import com.sun.ts.tests.common.vehicle.ejb3share.UserTransactionWrapper; +import com.sun.ts.tests.common.vehicle.pmservlet.PMServletVehicle; +import com.sun.ts.tests.common.vehicle.servlet.ServletVehicle; + import java.net.URL; + import org.jboss.arquillian.container.test.api.Deployment; -import org.jboss.arquillian.container.test.api.OperateOnDeployment; import org.jboss.arquillian.container.test.api.OverProtocol; import org.jboss.arquillian.container.test.api.TargetsContainer; import org.jboss.arquillian.junit5.ArquillianExtension; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.shrinkwrap.api.ShrinkWrap; -import org.jboss.shrinkwrap.api.asset.StringAsset; -import org.jboss.shrinkwrap.api.exporter.ZipExporter; import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.jboss.shrinkwrap.api.spec.WebArchive; @@ -19,167 +31,149 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestMethodOrder; import org.junit.jupiter.api.extension.ExtendWith; + +import ee.jakarta.tck.persistence.common.PMClientBase; import tck.arquillian.porting.lib.spi.TestArchiveProcessor; import tck.arquillian.protocol.common.TargetVehicle; - - @ExtendWith(ArquillianExtension.class) @Tag("persistence") @Tag("platform") @Tag("web") @Tag("tck-javatest") - @TestMethodOrder(MethodOrderer.MethodName.class) public class ClientPmservletTest extends ee.jakarta.tck.persistence.jpa.ee.packaging.jar.Client { + + private static final long serialVersionUID = 1L; static final String VEHICLE_ARCHIVE = "jpa_ee_packaging_jar_pmservlet_vehicle"; - /** - EE10 Deployment Descriptors: - jpa_ee_packaging_jar: META-INF/persistence.xml,META-INF/orm.xml,myMappingFile.xml,myMappingFile2.xml - jpa_ee_packaging_jar_appmanaged_vehicle_client: META-INF/application-client.xml - jpa_ee_packaging_jar_appmanaged_vehicle_ejb: jar.sun-ejb-jar.xml - jpa_ee_packaging_jar_pmservlet_vehicle_web: WEB-INF/web.xml - jpa_ee_packaging_jar_stateful3_vehicle_client: META-INF/application-client.xml - jpa_ee_packaging_jar_stateful3_vehicle_ejb: jar.sun-ejb-jar.xml - jpa_ee_packaging_jar_stateless3_vehicle_client: META-INF/application-client.xml - jpa_ee_packaging_jar_stateless3_vehicle_ejb: jar.sun-ejb-jar.xml - jpa_ee_packaging_jar_vehicles: - jpa_ee_packaging_jar1: - jpa_ee_packaging_jar2: - - Found Descriptors: - War: - - /com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml - Ear: - - */ - @TargetsContainer("tck-javatest") - @OverProtocol("javatest") - @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + /** + * EE10 Deployment Descriptors: jpa_ee_packaging_jar: + * META-INF/persistence.xml,META-INF/orm.xml,myMappingFile.xml,myMappingFile2.xml + * jpa_ee_packaging_jar_appmanaged_vehicle_client: META-INF/application-client.xml + * jpa_ee_packaging_jar_appmanaged_vehicle_ejb: jar.sun-ejb-jar.xml jpa_ee_packaging_jar_pmservlet_vehicle_web: + * WEB-INF/web.xml jpa_ee_packaging_jar_stateful3_vehicle_client: META-INF/application-client.xml + * jpa_ee_packaging_jar_stateful3_vehicle_ejb: jar.sun-ejb-jar.xml jpa_ee_packaging_jar_stateless3_vehicle_client: + * META-INF/application-client.xml jpa_ee_packaging_jar_stateless3_vehicle_ejb: jar.sun-ejb-jar.xml + * jpa_ee_packaging_jar_vehicles: jpa_ee_packaging_jar1: jpa_ee_packaging_jar2: + * + * Found Descriptors: War: + * + * /com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml Ear: + * + */ + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + @Deployment(name = VEHICLE_ARCHIVE, order = 2) + public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War - // the war with the correct archive name - WebArchive jpa_ee_packaging_jar_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_ee_packaging_jar_pmservlet_vehicle_web.war"); - // The class files - jpa_ee_packaging_jar_pmservlet_vehicle_web.addClasses( - com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareBaseBean.class, - ee.jakarta.tck.persistence.jpa.ee.packaging.jar.Client.class, - com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, - com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManager.class, - com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareIF.class, - com.sun.ts.lib.harness.EETest.Fault.class, - com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManagerFactory.class, - ee.jakarta.tck.persistence.common.PMClientBase.class, - com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.class, - com.sun.ts.tests.common.vehicle.VehicleRunnable.class, - com.sun.ts.tests.common.vehicle.ejb3share.UserTransactionWrapper.class, - com.sun.ts.lib.harness.EETest.class, - com.sun.ts.lib.harness.ServiceEETest.class, - com.sun.ts.tests.common.vehicle.ejb3share.EntityTransactionWrapper.class, - com.sun.ts.tests.common.vehicle.pmservlet.PMServletVehicle.class, - com.sun.ts.lib.harness.EETest.SetupException.class, - com.sun.ts.tests.common.vehicle.VehicleClient.class, - com.sun.ts.tests.common.vehicle.ejb3share.NoopTransactionWrapper.class - ); - // The web.xml descriptor - URL warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); - } - // The sun-web.xml descriptor - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.war.sun-web.xml"); - if(warResURL != null) { - jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); - } - - // Any libraries added to the war - URL libURL; - JavaArchive jpa_ee_packaging_jar2_lib = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_jar2.jar"); - // The class files - jpa_ee_packaging_jar2_lib.addClasses( - ee.jakarta.tck.persistence.jpa.ee.packaging.jar.C.class - ); - - - // The resources - libURL = Client.class.getResource("/com/sun/ts/tests/jpa/ee/packaging/jar/C.java"); - jpa_ee_packaging_jar2_lib.addAsResource(libURL, "/com/sun/ts/tests/jpa/ee/packaging/jar/C.java"); - - jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsLibrary(jpa_ee_packaging_jar2_lib); - JavaArchive jpa_ee_packaging_jar1_lib = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_jar1.jar"); - // The class files - jpa_ee_packaging_jar1_lib.addClasses( - ee.jakarta.tck.persistence.jpa.ee.packaging.jar.B.class - ); - - - // The resources - libURL = Client.class.getResource("/com/sun/ts/tests/jpa/ee/packaging/jar/B.java"); - jpa_ee_packaging_jar1_lib.addAsResource(libURL, "/com/sun/ts/tests/jpa/ee/packaging/jar/B.java"); - - jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsLibrary(jpa_ee_packaging_jar1_lib); - JavaArchive jpa_ee_packaging_jar_lib = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_jar.jar"); - // The class files - jpa_ee_packaging_jar_lib.addClasses( - ee.jakarta.tck.persistence.jpa.ee.packaging.jar.A.class - ); - - - // The resources - libURL = Client.class.getResource("persistence.xml"); - jpa_ee_packaging_jar_lib.addAsResource(libURL, "persistence.xml"); - libURL = Client.class.getResource("/orm.xml"); - jpa_ee_packaging_jar_lib.addAsResource(libURL, "/orm.xml"); - libURL = Client.class.getResource("/myMappingFile.xml"); - jpa_ee_packaging_jar_lib.addAsResource(libURL, "/myMappingFile.xml"); - libURL = Client.class.getResource("/myMappingFile2.xml"); - jpa_ee_packaging_jar_lib.addAsResource(libURL, "/myMappingFile2.xml"); - libURL = Client.class.getResource("/com/sun/ts/tests/jpa/ee/packaging/jar/A.java"); - jpa_ee_packaging_jar_lib.addAsResource(libURL, "/com/sun/ts/tests/jpa/ee/packaging/jar/A.java"); - - jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsLibrary(jpa_ee_packaging_jar_lib); - - - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/pmservlet_vehicle_web.xml"); - } - - // Call the archive processor - archiveProcessor.processWebArchive(jpa_ee_packaging_jar_pmservlet_vehicle_web, Client.class, warResURL); + // the war with the correct archive name + WebArchive jpa_ee_packaging_jar_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, + "jpa_ee_packaging_jar_pmservlet_vehicle_web.war"); + + // The class files + jpa_ee_packaging_jar_pmservlet_vehicle_web.addClasses( + EJB3ShareBaseBean.class, + Client.class, + VehicleRunnerFactory.class, + UseEntityManager.class, + EJB3ShareIF.class, Fault.class, + UseEntityManagerFactory.class, + PMClientBase.class, + ServletVehicle.class, + VehicleRunnable.class, + UserTransactionWrapper.class, + EETest.class, + ServiceEETest.class, + EntityTransactionWrapper.class, + PMServletVehicle.class, + SetupException.class, + VehicleClient.class, + NoopTransactionWrapper.class); + + // The web.xml descriptor + URL warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); + if (warResURL != null) { + jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); + } + + // The sun-web.xml descriptor + warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.war.sun-web.xml"); + if (warResURL != null) { + jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); + } + // Any libraries added to the war + URL libURL; + JavaArchive jpa_ee_packaging_jar2_lib = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_jar2.jar"); - // Ear - EnterpriseArchive jpa_ee_packaging_jar_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_ee_packaging_jar_vehicles.ear"); + // The class files + jpa_ee_packaging_jar2_lib.addClasses(C.class); - // Any libraries added to the ear + jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsLibrary(jpa_ee_packaging_jar2_lib); + JavaArchive jpa_ee_packaging_jar1_lib = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_jar1.jar"); - // The component jars built by the package target - jpa_ee_packaging_jar_vehicles_ear.addAsModule(jpa_ee_packaging_jar_pmservlet_vehicle_web); + // The class files + jpa_ee_packaging_jar1_lib.addClasses(B.class); + jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsLibrary(jpa_ee_packaging_jar1_lib); + JavaArchive jpa_ee_packaging_jar_lib = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_jar.jar"); + // The class files + jpa_ee_packaging_jar_lib.addClasses(A.class); - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_ee_packaging_jar_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_ee_packaging_jar_vehicles_ear, Client.class, earResURL); - return jpa_ee_packaging_jar_vehicles_ear; + // The resources + libURL = Client.class.getResource("/ee/jakarta/tck/persistence/ee/packaging/jar/persistence.xml"); + jpa_ee_packaging_jar_lib.addAsManifestResource(libURL, "persistence.xml"); + + libURL = Client.class.getResource("/ee/jakarta/tck/persistence/ee/packaging/jar/orm.xml"); + jpa_ee_packaging_jar_lib.addAsManifestResource(libURL, "orm.xml"); + + libURL = Client.class.getResource("/ee/jakarta/tck/persistence/ee/packaging/jar/myMappingFile.xml"); + jpa_ee_packaging_jar_lib.addAsResource(libURL, "myMappingFile.xml"); + + libURL = Client.class.getResource("/ee/jakarta/tck/persistence/ee/packaging/jar/myMappingFile2.xml"); + jpa_ee_packaging_jar_lib.addAsResource(libURL, "myMappingFile2.xml"); + + jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsLibrary(jpa_ee_packaging_jar_lib); + + // Web content + warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); + if (warResURL != null) { + jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/pmservlet_vehicle_web.xml"); } - @Test - @Override - @TargetVehicle("pmservlet") - public void JarFileElementsTest() throws java.lang.Exception { - super.JarFileElementsTest(); + // Call the archive processor + archiveProcessor.processWebArchive(jpa_ee_packaging_jar_pmservlet_vehicle_web, Client.class, warResURL); + + // Ear + EnterpriseArchive jpa_ee_packaging_jar_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, + "jpa_ee_packaging_jar_vehicles.ear"); + + // Any libraries added to the ear + + // The component jars built by the package target + jpa_ee_packaging_jar_vehicles_ear.addAsModule(jpa_ee_packaging_jar_pmservlet_vehicle_web); + + // The application.xml descriptor + URL earResURL = null; + + // The sun-application.xml descriptor + earResURL = Client.class.getResource("/.ear.sun-application.xml"); + if (earResURL != null) { + jpa_ee_packaging_jar_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); } + // Call the archive processor + archiveProcessor.processEarArchive(jpa_ee_packaging_jar_vehicles_ear, Client.class, earResURL); + return jpa_ee_packaging_jar_vehicles_ear; + } + + @Test + @Override + @TargetVehicle("pmservlet") + public void JarFileElementsTest() throws java.lang.Exception { + super.JarFileElementsTest(); + } } diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/resources/ee/jakarta/tck/persistence/ee/packaging/jar/persistence.xml b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/resources/ee/jakarta/tck/persistence/ee/packaging/jar/persistence.xml index beadf2dcb5..cab315273d 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/resources/ee/jakarta/tck/persistence/ee/packaging/jar/persistence.xml +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/resources/ee/jakarta/tck/persistence/ee/packaging/jar/persistence.xml @@ -18,10 +18,11 @@ --> + version="3.2"> + Persistence Unit for CTS EE Package Tests jdbc/DB1 @@ -30,6 +31,7 @@ jpa_ee_packaging_jar1.jar/ jpa_ee_packaging_jar2.jar/ + Persistence Unit for CTS EE Package Tests jdbc/DB1 From 202f4a1670a5a5ddcf03c1611b9d5254ca72d71d Mon Sep 17 00:00:00 2001 From: Scott M Stark Date: Sun, 12 Jan 2025 16:20:55 -0600 Subject: [PATCH 11/13] More changes for Web JPA tests (#1748) * More changes for Web JPA tests Signed-off-by: Scott M Stark * Update ClientPmservletTest.java --------- Signed-off-by: Scott M Stark --- .../ClientPmservletTest.java | 165 +++++++----------- .../ClientPuservletTest.java | 50 +----- .../manyXmany/ClientPmservletTest.java | 60 +------ .../manyXmany/ClientPuservletTest.java | 26 +-- .../core/types/field/ClientPmservletTest.java | 61 +------ .../ee/entityManagerFactory/Client.java | 2 - .../ClientPmservletTest.java | 55 +----- .../ee/packaging/jar/ClientPmservletTest.java | 29 +-- 8 files changed, 88 insertions(+), 360 deletions(-) diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPmservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPmservletTest.java index 0d3232e77c..a46c61a911 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPmservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPmservletTest.java @@ -23,7 +23,6 @@ import org.jboss.arquillian.junit5.ArquillianExtension; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.shrinkwrap.api.ShrinkWrap; -import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.junit.jupiter.api.MethodOrderer; @@ -47,108 +46,74 @@ public class ClientPmservletTest extends Client { private static final long serialVersionUID = 1L; static final String VEHICLE_ARCHIVE = "jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle"; - /** - * EE10 Deployment Descriptors: jpa_core_entityManagerFactoryCloseException: META-INF/persistence.xml - * jpa_core_entityManagerFactoryCloseException_appmanaged_vehicle_client: META-INF/application-client.xml - * jpa_core_entityManagerFactoryCloseException_appmanaged_vehicle_ejb: jar.sun-ejb-jar.xml - * jpa_core_entityManagerFactoryCloseException_appmanagedNoTx_vehicle_client: META-INF/application-client.xml - * jpa_core_entityManagerFactoryCloseException_appmanagedNoTx_vehicle_ejb: jar.sun-ejb-jar.xml - * jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web: WEB-INF/web.xml - * jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web: WEB-INF/web.xml - * jpa_core_entityManagerFactoryCloseException_stateful3_vehicle_client: META-INF/application-client.xml - * jpa_core_entityManagerFactoryCloseException_stateful3_vehicle_ejb: jar.sun-ejb-jar.xml - * jpa_core_entityManagerFactoryCloseException_stateless3_vehicle_client: META-INF/application-client.xml - * jpa_core_entityManagerFactoryCloseException_stateless3_vehicle_ejb: jar.sun-ejb-jar.xml - * jpa_core_entityManagerFactoryCloseException_vehicles: - * - * Found Descriptors: War: - * - * /com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml Ear: - * - */ - @TargetsContainer("tck-javatest") - @OverProtocol("javatest") - @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + /** + EE10 Deployment Descriptors: + jpa_core_entityManagerFactoryCloseException: META-INF/persistence.xml + jpa_core_entityManagerFactoryCloseException_appmanaged_vehicle_client: META-INF/application-client.xml + jpa_core_entityManagerFactoryCloseException_appmanaged_vehicle_ejb: jar.sun-ejb-jar.xml + jpa_core_entityManagerFactoryCloseException_appmanagedNoTx_vehicle_client: META-INF/application-client.xml + jpa_core_entityManagerFactoryCloseException_appmanagedNoTx_vehicle_ejb: jar.sun-ejb-jar.xml + jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web: WEB-INF/web.xml + jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web: WEB-INF/web.xml + jpa_core_entityManagerFactoryCloseException_stateful3_vehicle_client: META-INF/application-client.xml + jpa_core_entityManagerFactoryCloseException_stateful3_vehicle_ejb: jar.sun-ejb-jar.xml + jpa_core_entityManagerFactoryCloseException_stateless3_vehicle_client: META-INF/application-client.xml + jpa_core_entityManagerFactoryCloseException_stateless3_vehicle_ejb: jar.sun-ejb-jar.xml + jpa_core_entityManagerFactoryCloseException_vehicles: + + Found Descriptors: + War: + + /com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml + Ear: + + */ + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + @Deployment(name = VEHICLE_ARCHIVE, order = 2) + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War - // the war with the correct archive name - WebArchive jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web = - ShrinkWrap.create(WebArchive.class, "jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.war"); - - // The class files - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addClasses( - EJB3ShareBaseBean.class, - VehicleRunnerFactory.class, - UseEntityManager.class, - EJB3ShareIF.class, - Fault.class, - UseEntityManagerFactory.class, - PMClientBase.class, - ServletVehicle.class, - VehicleRunnable.class, - UserTransactionWrapper.class, - EETest.class, - ServiceEETest.class, - EntityTransactionWrapper.class, - PMServletVehicle.class, - Client.class, - SetupException.class, VehicleClient.class, - NoopTransactionWrapper.class); - - // The web.xml descriptor - URL warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if (warResURL != null) { - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); - } - - // The sun-web.xml descriptor - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.war.sun-web.xml"); - if (warResURL != null) { - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); - } - - // Any libraries added to the war - JavaArchive jpa_core_entityManagerFactoryCloseException_lib = - ShrinkWrap.create(JavaArchive.class, "jpa_core_entityManagerFactoryCloseException.jar"); - - // The resources - URL libURL = Client.class.getResource("persistence.xml"); - jpa_core_entityManagerFactoryCloseException_lib.addAsManifestResource(libURL, "persistence.xml"); - - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsLibrary(jpa_core_entityManagerFactoryCloseException_lib); - - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if (warResURL != null) { - jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebResource(warResURL, - "/WEB-INF/pmservlet_vehicle_web.xml"); + // the war with the correct archive name + WebArchive jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.war"); + // The class files + jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addClasses( + com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareBaseBean.class, + com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, + com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManager.class, + com.sun.ts.tests.common.vehicle.ejb3share.EJB3ShareIF.class, + com.sun.ts.lib.harness.EETest.Fault.class, + com.sun.ts.tests.common.vehicle.ejb3share.UseEntityManagerFactory.class, + ee.jakarta.tck.persistence.common.PMClientBase.class, + com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.class, + com.sun.ts.tests.common.vehicle.VehicleRunnable.class, + com.sun.ts.tests.common.vehicle.ejb3share.UserTransactionWrapper.class, + com.sun.ts.lib.harness.EETest.class, + com.sun.ts.lib.harness.ServiceEETest.class, + com.sun.ts.tests.common.vehicle.ejb3share.EntityTransactionWrapper.class, + com.sun.ts.tests.common.vehicle.pmservlet.PMServletVehicle.class, + ee.jakarta.tck.persistence.core.entityManagerFactoryCloseExceptions.Client.class, + com.sun.ts.lib.harness.EETest.SetupException.class, + com.sun.ts.tests.common.vehicle.VehicleClient.class, + com.sun.ts.tests.common.vehicle.ejb3share.NoopTransactionWrapper.class + ); + // The web.xml descriptor + URL warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); + if(warResURL != null) { + jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); + } + + // Par + JavaArchive jpa_core_entityManagerFactoryCloseException_lib = ShrinkWrap.create(JavaArchive.class, "jpa_core_entityManagerFactoryCloseException.jar"); + URL parURL = Client.class.getResource("/ee/jakarta/tck/persistence/common/template/persistence.xml"); + jpa_core_entityManagerFactoryCloseException_lib.addAsManifestResource(parURL, "persistence.xml"); + jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web.addAsLibrary(jpa_core_entityManagerFactoryCloseException_lib); + + // Call the archive processor + archiveProcessor.processWebArchive(jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web, Client.class, warResURL); + + return jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web; } - // Call the archive processor - archiveProcessor.processWebArchive(jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web, Client.class, warResURL); - - // Ear - EnterpriseArchive jpa_core_entityManagerFactoryCloseException_vehicles_ear = - ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_entityManagerFactoryCloseException_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_core_entityManagerFactoryCloseException_vehicles_ear - .addAsModule(jpa_core_entityManagerFactoryCloseException_pmservlet_vehicle_web); - - // The sun-application.xml descriptor - URL earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if (earResURL != null) { - jpa_core_entityManagerFactoryCloseException_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_entityManagerFactoryCloseException_vehicles_ear, Client.class, earResURL); - - return jpa_core_entityManagerFactoryCloseException_vehicles_ear; - } - @Test @Override @TargetVehicle("pmservlet") diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPuservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPuservletTest.java index 5aee7e83c9..735dd2c7d6 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPuservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entityManagerFactoryCloseExceptions/ClientPuservletTest.java @@ -53,13 +53,12 @@ public class ClientPuservletTest extends ee.jakarta.tck.persistence.core.entityM War: /com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.xml - Ear: */ @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web.war"); @@ -89,53 +88,18 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test if(warResURL != null) { jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); } - // The sun-web.xml descriptor - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.war.sun-web.xml"); - if(warResURL != null) { - jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); - } - - // Any libraries added to the war - URL libURL; - JavaArchive jpa_core_entityManagerFactoryCloseException_lib = ShrinkWrap.create(JavaArchive.class, "jpa_core_entityManagerFactoryCloseException.jar"); - - // The resources - libURL = Client.class.getResource("persistence.xml"); - jpa_core_entityManagerFactoryCloseException_lib.addAsResource(libURL, "persistence.xml"); - jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web.addAsLibrary(jpa_core_entityManagerFactoryCloseException_lib); + // Par + JavaArchive jpa_core_entityManagerFactoryCloseException_lib = ShrinkWrap.create(JavaArchive.class, "jpa_core_entityManagerFactoryCloseException.jar"); + URL parURL = Client.class.getResource("/ee/jakarta/tck/persistence/common/template/persistence.xml"); + jpa_core_entityManagerFactoryCloseException_lib.addAsManifestResource(parURL, "persistence.xml"); + jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web.addAsLibrary(jpa_core_entityManagerFactoryCloseException_lib); - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/puservlet/puservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/puservlet_vehicle_web.xml"); - } - // Call the archive processor archiveProcessor.processWebArchive(jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web, Client.class, warResURL); - - // Ear - EnterpriseArchive jpa_core_entityManagerFactoryCloseException_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_entityManagerFactoryCloseException_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_core_entityManagerFactoryCloseException_vehicles_ear.addAsModule(jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web); - - - - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_core_entityManagerFactoryCloseException_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_entityManagerFactoryCloseException_vehicles_ear, Client.class, earResURL); - return jpa_core_entityManagerFactoryCloseException_vehicles_ear; + return jpa_core_entityManagerFactoryCloseException_puservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entitytest/cascadeall/manyXmany/ClientPmservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entitytest/cascadeall/manyXmany/ClientPmservletTest.java index 32e91bdbb6..4d4c672e34 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entitytest/cascadeall/manyXmany/ClientPmservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entitytest/cascadeall/manyXmany/ClientPmservletTest.java @@ -59,7 +59,7 @@ public class ClientPmservletTest extends ee.jakarta.tck.persistence.core.entityt @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_core_et_cascadeall_manyXmany_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_et_cascadeall_manyXmany_pmservlet_vehicle_web.war"); @@ -95,18 +95,6 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test jpa_core_et_cascadeall_manyXmany_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); } - // Any libraries added to the war - - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/jpa/core/entitytest/cascadeall/manyXmany/jpa_core_et_cascadeall_manyXmany.jar"); - if(warResURL != null) { - jpa_core_et_cascadeall_manyXmany_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/lib/jpa_core_et_cascadeall_manyXmany.jar"); - } - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_et_cascadeall_manyXmany_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/pmservlet_vehicle_web.xml"); - } - // Call the archive processor archiveProcessor.processWebArchive(jpa_core_et_cascadeall_manyXmany_pmservlet_vehicle_web, Client.class, warResURL); @@ -121,51 +109,11 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test ); // The persistence.xml descriptor URL parURL = Client.class.getResource("persistence.xml"); - if(parURL != null) { - jpa_core_et_cascadeall_manyXmany.addAsManifestResource(parURL, "persistence.xml"); - } - // Add the Persistence mapping-file - URL mappingURL = Client.class.getResource("myMappingFile.xml"); - if(mappingURL != null) { - jpa_core_et_cascadeall_manyXmany.addAsResource(mappingURL, "myMappingFile.xml"); - } - mappingURL = Client.class.getResource("myMappingFile1.xml"); - if(mappingURL != null) { - jpa_core_et_cascadeall_manyXmany.addAsResource(mappingURL, "myMappingFile1.xml"); - } - mappingURL = Client.class.getResource("myMappingFile2.xml"); - if(mappingURL != null) { - jpa_core_et_cascadeall_manyXmany.addAsResource(mappingURL, "myMappingFile2.xml"); - } - // Call the archive processor + jpa_core_et_cascadeall_manyXmany.addAsManifestResource(parURL, "persistence.xml"); archiveProcessor.processParArchive(jpa_core_et_cascadeall_manyXmany, Client.class, parURL); - parURL = Client.class.getResource("orm.xml"); - if(parURL != null) { - jpa_core_et_cascadeall_manyXmany.addAsManifestResource(parURL, "orm.xml"); - } - - // Ear - EnterpriseArchive jpa_core_et_cascadeall_manyXmany_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_et_cascadeall_manyXmany_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_core_et_cascadeall_manyXmany_vehicles_ear.addAsModule(jpa_core_et_cascadeall_manyXmany_pmservlet_vehicle_web); + jpa_core_et_cascadeall_manyXmany_pmservlet_vehicle_web.addAsLibrary(jpa_core_et_cascadeall_manyXmany); - jpa_core_et_cascadeall_manyXmany_vehicles_ear.addAsLibrary(jpa_core_et_cascadeall_manyXmany); - - - - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_core_et_cascadeall_manyXmany_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_et_cascadeall_manyXmany_vehicles_ear, Client.class, earResURL); - return jpa_core_et_cascadeall_manyXmany_vehicles_ear; + return jpa_core_et_cascadeall_manyXmany_pmservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entitytest/cascadeall/manyXmany/ClientPuservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entitytest/cascadeall/manyXmany/ClientPuservletTest.java index 8bea66855d..183bd48a4c 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entitytest/cascadeall/manyXmany/ClientPuservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/entitytest/cascadeall/manyXmany/ClientPuservletTest.java @@ -59,7 +59,7 @@ public class ClientPuservletTest extends ee.jakarta.tck.persistence.core.entityt @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_core_et_cascadeall_manyXmany_puservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_et_cascadeall_manyXmany_puservlet_vehicle_web.war"); @@ -143,29 +143,9 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test if(parURL != null) { jpa_core_et_cascadeall_manyXmany.addAsManifestResource(parURL, "orm.xml"); } + jpa_core_et_cascadeall_manyXmany_puservlet_vehicle_web.addAsLibrary(jpa_core_et_cascadeall_manyXmany); - // Ear - EnterpriseArchive jpa_core_et_cascadeall_manyXmany_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_et_cascadeall_manyXmany_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_core_et_cascadeall_manyXmany_vehicles_ear.addAsModule(jpa_core_et_cascadeall_manyXmany_puservlet_vehicle_web); - - jpa_core_et_cascadeall_manyXmany_vehicles_ear.addAsLibrary(jpa_core_et_cascadeall_manyXmany); - - - - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_core_et_cascadeall_manyXmany_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_et_cascadeall_manyXmany_vehicles_ear, Client.class, earResURL); - return jpa_core_et_cascadeall_manyXmany_vehicles_ear; + return jpa_core_et_cascadeall_manyXmany_puservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/types/field/ClientPmservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/types/field/ClientPmservletTest.java index 01f591de01..81dfa42661 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/types/field/ClientPmservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/core/types/field/ClientPmservletTest.java @@ -59,7 +59,7 @@ public class ClientPmservletTest extends ee.jakarta.tck.persistence.core.types.f @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_core_types_field_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_core_types_field_pmservlet_vehicle_web.war"); @@ -89,23 +89,6 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test if(warResURL != null) { jpa_core_types_field_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); } - // The sun-web.xml descriptor - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.war.sun-web.xml"); - if(warResURL != null) { - jpa_core_types_field_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); - } - - // Any libraries added to the war - - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/jpa/core/types/field/jpa_core_types_field.jar"); - if(warResURL != null) { - jpa_core_types_field_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/lib/jpa_core_types_field.jar"); - } - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_core_types_field_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/pmservlet_vehicle_web.xml"); - } // Call the archive processor archiveProcessor.processWebArchive(jpa_core_types_field_pmservlet_vehicle_web, Client.class, warResURL); @@ -126,48 +109,12 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test if(parURL != null) { jpa_core_types_field.addAsManifestResource(parURL, "persistence.xml"); } - // Add the Persistence mapping-file - URL mappingURL = Client.class.getResource("myMappingFile.xml"); - if(mappingURL != null) { - jpa_core_types_field.addAsResource(mappingURL, "myMappingFile.xml"); - } - mappingURL = Client.class.getResource("myMappingFile1.xml"); - if(mappingURL != null) { - jpa_core_types_field.addAsResource(mappingURL, "myMappingFile1.xml"); - } - mappingURL = Client.class.getResource("myMappingFile2.xml"); - if(mappingURL != null) { - jpa_core_types_field.addAsResource(mappingURL, "myMappingFile2.xml"); - } + // Call the archive processor archiveProcessor.processParArchive(jpa_core_types_field, Client.class, parURL); - parURL = Client.class.getResource("orm.xml"); - if(parURL != null) { - jpa_core_types_field.addAsManifestResource(parURL, "orm.xml"); - } - - // Ear - EnterpriseArchive jpa_core_types_field_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_core_types_field_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_core_types_field_vehicles_ear.addAsModule(jpa_core_types_field_pmservlet_vehicle_web); + jpa_core_types_field_pmservlet_vehicle_web.addAsLibrary(jpa_core_types_field); - jpa_core_types_field_vehicles_ear.addAsLibrary(jpa_core_types_field); - - - - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_core_types_field_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_core_types_field_vehicles_ear, Client.class, earResURL); - return jpa_core_types_field_vehicles_ear; + return jpa_core_types_field_pmservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManagerFactory/Client.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManagerFactory/Client.java index 39f2cb09f1..003e0a9c22 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManagerFactory/Client.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManagerFactory/Client.java @@ -19,9 +19,7 @@ import java.util.Properties; - import ee.jakarta.tck.persistence.common.PMClientBase; -import ee.jakarta.tck.persistence.core.entityManagerFactory.Order; import jakarta.persistence.EntityManagerFactory; import jakarta.persistence.Persistence; diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManagerFactory/ClientPmservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManagerFactory/ClientPmservletTest.java index eb62cb33e4..4759bc0ade 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManagerFactory/ClientPmservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManagerFactory/ClientPmservletTest.java @@ -60,7 +60,7 @@ public class ClientPmservletTest extends ee.jakarta.tck.persistence.ee.entityMan @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_ee_entityManagerFactory_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, "jpa_ee_entityManagerFactory_pmservlet_vehicle_web.war"); @@ -96,18 +96,6 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test jpa_ee_entityManagerFactory_pmservlet_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); } - // Any libraries added to the war - - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/jpa/ee/entityManagerFactory/jpa_ee_entityManagerFactory.jar"); - if(warResURL != null) { - jpa_ee_entityManagerFactory_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/lib/jpa_ee_entityManagerFactory.jar"); - } - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if(warResURL != null) { - jpa_ee_entityManagerFactory_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/pmservlet_vehicle_web.xml"); - } - // Call the archive processor archiveProcessor.processWebArchive(jpa_ee_entityManagerFactory_pmservlet_vehicle_web, Client.class, warResURL); @@ -122,48 +110,11 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test if(parURL != null) { jpa_ee_entityManagerFactory.addAsManifestResource(parURL, "persistence.xml"); } - // Add the Persistence mapping-file - URL mappingURL = Client.class.getResource("myMappingFile.xml"); - if(mappingURL != null) { - jpa_ee_entityManagerFactory.addAsResource(mappingURL, "myMappingFile.xml"); - } - mappingURL = Client.class.getResource("myMappingFile1.xml"); - if(mappingURL != null) { - jpa_ee_entityManagerFactory.addAsResource(mappingURL, "myMappingFile1.xml"); - } - mappingURL = Client.class.getResource("myMappingFile2.xml"); - if(mappingURL != null) { - jpa_ee_entityManagerFactory.addAsResource(mappingURL, "myMappingFile2.xml"); - } // Call the archive processor archiveProcessor.processParArchive(jpa_ee_entityManagerFactory, Client.class, parURL); - parURL = Client.class.getResource("orm.xml"); - if(parURL != null) { - jpa_ee_entityManagerFactory.addAsManifestResource(parURL, "orm.xml"); - } - - // Ear - EnterpriseArchive jpa_ee_entityManagerFactory_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_ee_entityManagerFactory_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_ee_entityManagerFactory_vehicles_ear.addAsModule(jpa_ee_entityManagerFactory_pmservlet_vehicle_web); - - jpa_ee_entityManagerFactory_vehicles_ear.addAsLibrary(jpa_ee_entityManagerFactory); + jpa_ee_entityManagerFactory_pmservlet_vehicle_web.addAsLibrary(jpa_ee_entityManagerFactory); - - - // The application.xml descriptor - URL earResURL = null; - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if(earResURL != null) { - jpa_ee_entityManagerFactory_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_ee_entityManagerFactory_vehicles_ear, Client.class, earResURL); - return jpa_ee_entityManagerFactory_vehicles_ear; + return jpa_ee_entityManagerFactory_pmservlet_vehicle_web; } @Test diff --git a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/ClientPmservletTest.java b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/ClientPmservletTest.java index 69eb992194..977657c002 100644 --- a/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/ClientPmservletTest.java +++ b/tcks/apis/persistence/persistence-inside-container/platform-tests/src/main/java/ee/jakarta/tck/persistence/jpa/ee/packaging/jar/ClientPmservletTest.java @@ -65,7 +65,7 @@ public class ClientPmservletTest extends ee.jakarta.tck.persistence.jpa.ee.packa @TargetsContainer("tck-javatest") @OverProtocol("javatest") @Deployment(name = VEHICLE_ARCHIVE, order = 2) - public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { + public static WebArchive createDeploymentVehicle(@ArquillianResource TestArchiveProcessor archiveProcessor) { // War // the war with the correct archive name WebArchive jpa_ee_packaging_jar_pmservlet_vehicle_web = ShrinkWrap.create(WebArchive.class, @@ -137,36 +137,11 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsLibrary(jpa_ee_packaging_jar_lib); - // Web content - warResURL = Client.class.getResource("/com/sun/ts/tests/common/vehicle/pmservlet/pmservlet_vehicle_web.xml"); - if (warResURL != null) { - jpa_ee_packaging_jar_pmservlet_vehicle_web.addAsWebResource(warResURL, "/WEB-INF/pmservlet_vehicle_web.xml"); - } // Call the archive processor archiveProcessor.processWebArchive(jpa_ee_packaging_jar_pmservlet_vehicle_web, Client.class, warResURL); - // Ear - EnterpriseArchive jpa_ee_packaging_jar_vehicles_ear = ShrinkWrap.create(EnterpriseArchive.class, - "jpa_ee_packaging_jar_vehicles.ear"); - - // Any libraries added to the ear - - // The component jars built by the package target - jpa_ee_packaging_jar_vehicles_ear.addAsModule(jpa_ee_packaging_jar_pmservlet_vehicle_web); - - // The application.xml descriptor - URL earResURL = null; - - // The sun-application.xml descriptor - earResURL = Client.class.getResource("/.ear.sun-application.xml"); - if (earResURL != null) { - jpa_ee_packaging_jar_vehicles_ear.addAsManifestResource(earResURL, "sun-application.xml"); - } - // Call the archive processor - archiveProcessor.processEarArchive(jpa_ee_packaging_jar_vehicles_ear, Client.class, earResURL); - - return jpa_ee_packaging_jar_vehicles_ear; + return jpa_ee_packaging_jar_pmservlet_vehicle_web; } @Test From 5ffd9f66306ab56709b9008e7b369ba36b860c8d Mon Sep 17 00:00:00 2001 From: Gurunandan Rao Date: Mon, 13 Jan 2025 14:54:39 +0530 Subject: [PATCH 12/13] connector test runs with mdb. (#1749) Signed-off-by: Gurunandan Rao --- .../annotated/whitebox-anno_no_md.rar | Bin 0 -> 13956 bytes .../whitebox/ibanno/whitebox-ibanno_no_md.rar | Bin 0 -> 25578 bytes .../mdcomplete/whitebox-mdcomplete.rar | Bin 0 -> 21229 bytes .../whitebox/mixedmode/whitebox-mixedmode.rar | Bin 0 -> 10213 bytes .../whitebox/multianno/whitebox-multianno.rar | Bin 0 -> 19295 bytes .../permissiondd/whitebox-permissiondd.rar | Bin 0 -> 15221 bytes .../connector-platform-tck/j2ee.pass | 17 + .../connector-platform-tck/javajoe.pass | 16 + .../connector-platform-tck/pom.xml | 636 +- .../connector-platform-tck/run.log | 30847 ---------------- .../test/resources/appclient-arquillian.xml | 2 +- glassfish-runner/xa-platform-tck/pom.xml | 4 + .../anno/annotationClientEjbTest.java | 3 +- .../anno/annotationClientJspTest.java | 2 +- ...ations_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ...nnotations_jsp_vehicle_web.war.sun-web.xml | 4 +- ...ations_servlet_vehicle_web.war.sun-web.xml | 4 +- .../annotations/mdcomplete/ClientEjbTest.java | 3 +- ...mplete_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ...mdcomplete_jsp_vehicle_web.war.sun-web.xml | 4 +- ...mplete_servlet_vehicle_web.war.sun-web.xml | 4 +- .../partialanno/paClientEjbTest.java | 3 +- ...alanno_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 8 +- ...artialanno_jsp_vehicle_web.war.sun-web.xml | 8 +- ...alanno_servlet_vehicle_web.war.sun-web.xml | 8 +- .../connManagerClient1EjbTest.java | 1 + ...anager_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 12 +- ...onnManager_jsp_vehicle_web.war.sun-web.xml | 12 +- ...anager_servlet_vehicle_web.war.sun-web.xml | 12 +- .../ejb_Deployment_ejb.jar.sun-ejb-jar.xml | 4 +- .../connection/connectionClient1EjbTest.java | 9 +- ...x_conn_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ...calTx_conn_jsp_vehicle_web.war.sun-web.xml | 4 +- ...x_conn_servlet_vehicle_web.war.sun-web.xml | 4 +- .../localTx/event/eventClient1EjbTest.java | 1 + ..._event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ...alTx_event_jsp_vehicle_web.war.sun-web.xml | 4 +- ..._event_servlet_vehicle_web.war.sun-web.xml | 4 +- .../lifecycle/lifecycleClient1EjbTest.java | 4 +- ...ecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ..._lifecycle_jsp_vehicle_web.war.sun-web.xml | 4 +- ...ecycle_servlet_vehicle_web.war.sun-web.xml | 4 +- .../localTx/msginflow/MDBClient.java | 84 +- ...ow_mdb_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 12 +- ...inflow_mdb_jsp_vehicle_web.war.sun-web.xml | 8 +- ...ow_mdb_servlet_vehicle_web.war.sun-web.xml | 8 +- ...curity_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 8 +- ...x_security_jsp_vehicle_web.war.sun-web.xml | 8 +- ...curity_servlet_vehicle_web.war.sun-web.xml | 8 +- .../security/securityClient1EjbTest.java | 1 + ...txTran_conSharing2_ejb.jar.sun-ejb-jar.xml | 8 +- ...txTran_conSharing3_ejb.jar.sun-ejb-jar.xml | 8 +- .../transinflowClient1EjbTest.java | 1 + .../transinflowClient1JspTest.java | 2 +- ...inflow_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 8 +- .../transinflow_ejb_vehicle_ejb.xml | 15 +- ...ransinflow_jsp_vehicle_web.war.sun-web.xml | 8 +- ...inflow_servlet_vehicle_web.war.sun-web.xml | 8 +- .../workcontext/WorkContextClientEjbTest.java | 3 +- ...ontext_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 12 +- .../workcontext_ejb_vehicle_ejb.xml | 29 +- ...orkcontext_jsp_vehicle_web.war.sun-web.xml | 12 +- ...ontext_servlet_vehicle_web.war.sun-web.xml | 12 +- ...orkmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ...Tx_workmgt_jsp_vehicle_web.war.sun-web.xml | 4 +- ...orkmgt_servlet_vehicle_web.war.sun-web.xml | 4 +- .../workmgt/workmgtClient1EjbTest.java | 1 + .../connection/connectionClient1EjbTest.java | 1 + ...ection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ...connection_jsp_vehicle_web.war.sun-web.xml | 4 +- ...ection_servlet_vehicle_web.war.sun-web.xml | 4 +- .../noTx/event/eventClient1EjbTest.java | 1 + .../event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- .../event_jsp_vehicle_web.war.sun-web.xml | 4 +- .../event_servlet_vehicle_web.war.sun-web.xml | 4 +- .../lifecycle/lifecycleClient1EjbTest.java | 5 +- ...ecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- .../lifecycle_jsp_vehicle_web.war.sun-web.xml | 4 +- ...ecycle_servlet_vehicle_web.war.sun-web.xml | 4 +- .../noTx/security/securityClient1EjbTest.java | 1 + .../noTx/security/securityClient1JspTest.java | 4 +- ...curity_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- .../security_jsp_vehicle_web.war.sun-web.xml | 4 +- ...curity_servlet_vehicle_web.war.sun-web.xml | 4 +- .../noTx/workmgt/workmgtClient1EjbTest.java | 1 + ...orkmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- .../workmgt_jsp_vehicle_web.war.sun-web.xml | 4 +- ...orkmgt_servlet_vehicle_web.war.sun-web.xml | 4 +- .../connector/permissiondd/ClientEjbTest.java | 1 + .../connection/connectionClient1EjbTest.java | 1 + ...ection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ...connection_jsp_vehicle_web.war.sun-web.xml | 4 +- ...ection_servlet_vehicle_web.war.sun-web.xml | 4 +- .../xa/event/eventClient1EjbTest.java | 1 + ..._event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- .../xa_event_jsp_vehicle_web.war.sun-web.xml | 4 +- ..._event_servlet_vehicle_web.war.sun-web.xml | 4 +- .../xa/lifecycle/lifecycleClient1EjbTest.java | 1 + ...ecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ..._lifecycle_jsp_vehicle_web.war.sun-web.xml | 4 +- ...ecycle_servlet_vehicle_web.war.sun-web.xml | 4 +- .../xa/security/securityClient1EjbTest.java | 3 +- ...curity_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ...a_security_jsp_vehicle_web.war.sun-web.xml | 4 +- ...curity_servlet_vehicle_web.war.sun-web.xml | 4 +- .../jta/ejb_JTATest_ejb.jar.sun-ejb-jar.xml | 4 +- .../xa/workmgt/workmgtClient1EjbTest.java | 1 + ...orkmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml | 4 +- ...xa_workmgt_jsp_vehicle_web.war.sun-web.xml | 4 +- ...orkmgt_servlet_vehicle_web.war.sun-web.xml | 4 +- 110 files changed, 952 insertions(+), 31141 deletions(-) create mode 100644 glassfish-runner/connector-platform-tck/connectors/whitebox/annotated/whitebox-anno_no_md.rar create mode 100644 glassfish-runner/connector-platform-tck/connectors/whitebox/ibanno/whitebox-ibanno_no_md.rar create mode 100644 glassfish-runner/connector-platform-tck/connectors/whitebox/mdcomplete/whitebox-mdcomplete.rar create mode 100644 glassfish-runner/connector-platform-tck/connectors/whitebox/mixedmode/whitebox-mixedmode.rar create mode 100644 glassfish-runner/connector-platform-tck/connectors/whitebox/multianno/whitebox-multianno.rar create mode 100644 glassfish-runner/connector-platform-tck/connectors/whitebox/permissiondd/whitebox-permissiondd.rar create mode 100644 glassfish-runner/connector-platform-tck/j2ee.pass create mode 100644 glassfish-runner/connector-platform-tck/javajoe.pass delete mode 100644 glassfish-runner/connector-platform-tck/run.log diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/annotated/whitebox-anno_no_md.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/annotated/whitebox-anno_no_md.rar new file mode 100644 index 0000000000000000000000000000000000000000..151fc1807ce6833ad36c610a06260502398f1dec GIT binary patch literal 13956 zcmZ{rV~{8?kf6u5ZQHhO+qUP8ZQHhO+qU(_w(srj-R;)ZUGk%oPIpq(e}c}ZAPo!x z1poj60ATEopbGHc3M2psfUKyBAg!dF82!&A0D!{(GKByz`e#}^+uy(N&s-b`008Bm z{6D6$f^w2#qRJ|CvSKOmywHOTD59?dKf+?7O4Z>8ZCW@W{9psTrFAUxWTc*jKVC&f z*yU(Cx4i6}-8u7>0AXJstCU5^XyVFJO1LDJ#3qo_=DpEnia5%Nng|e_`a9o)@`W2F z6Jp@hCZIITt&D2<`f-$+dk9aDq`j(e$f30;YC+C2g~n@2gxNDOiEO7kM)Xz?XoM~{ z0+m7&YwQI-JjHCT%7U<1zr!weG<(O8Nu{ydqRNM+UPgRg=)z2Mz6wXw^XP9nmF5dM z^`gEXG(cx<%LFUzMaO{u6@veWR&g0!x-JU<03kO30PMdI7~0v{yBNBdn$TGpI<?Z7LyLEuB0E6-kgw=ADdui{EaukJTE0T$5Pcm+i;J| zCKFx2#VkH9EmXjLu;}>85Piw3m$|yWnwHVI%K7OpdxOsV=^J)$ z1L;i1-17P&7s~#%7ZP)Gd!ZAfGb^3$8=K`P2?IiUdSU4A_iYRau>5f+4e@(Ej=74a znU)d#jR4-1H7pZ$M#!GM4^Br@~hv2lc|M zpaS6|yED5@N9Zd<2TfJqWV`T6i~(1wr7RdQPEKlS9p72&YRW1Ym38{8X>2P$(vn{{ zn(^tv?$wEdYNC+F7chDpYWq z`y6yPjRZSYO2EdfG<@~~okU$Osfp{&xbaH1iZ<}y>I=2GkN)&Iq54+plcqjwWOWAH zZ5iY}M>dhi9YqVhqXaX_L$dz!4RrQ~DCJFw%63`)gQmibt1mbmXE<4tB{=NiU;5$Yp*ru)9p;-YX=!ZUBO?@Gbt#>>zde4B9Yt z`b=IR_R^+U4=GahP^DS+br#>fkdkFdoz?GN^D40$woZQ>)NvWN75W5UJuI8v)X|7V zyn;642VpL9hr&zkJxs9y&dlf+{tS^2&bsg7oPn__j5;MXBjzH!RiZW&oZr@EX$RaF z4M|lcx(1m9D1Pvr%3>81%BF-Y$@U|oJ8UJETEn=8TL&HsK7gdix)Fu+obt#a zs$Bw|Y`6Go3OO*xwWy0^Hlt}*ksXIM#01I#7U8?;%`pY6s52THipGA2JF{@l0m)4Z zi>5MxRApO?=9zA_tI4Mpl;JWTOS)=7s43&NTvichP2*US#aMaS*`hE7GpBB-A7sxFIQ^}Lh%9zEjxN4}hEozDGcacN?8@~C zT=(TyEfQ^9b`3DL)n*EO!?>6{2|J82%>4?7_o-&guRwKMWpi6g^hCTeH-ag&iK6_V z16{b9H&>(6)d~?-tEG*g7SL1Gk4diXzu$ydDk9o>N95?RK;f3AB4b_&VPDhLe=RVs zb}08}JoUmlf4epc+75#sa_+=nyHidh%osL0^wd*O_lRFakkD__kjdgXKsr@D8C=-u z%Uko&+?QHe6Q9yzCw$e}Xa(Q8%6#c$ZTG9I!~z)0$fG_UU&~94qt0q*wNKm{ z=G0?J+DlT5tg8_G1i(}>4mN61sm~FznLwUSp{((UE}5VEc?pQGVeo{0J9(tGZjr1~ zC$ovg|3L3`E31XDi~+!VpN%ru4f8@T@>@*F3BY7#2)Nh(3?$%lz6}K7nG?u~O-4xZC zMp1XgR^;@^ca6eXLN)Rn{G3k~KYRVCD%l>wJeP?$(K*uDMRA^yoH}@5)azeI;2$e3 zUz)_xF{`LM#vw<403AMCg1JMA$vdm%-;Xr%^f+A?p;A5*Bl6a}K& z;bP{e=p@6x1D5Jmd7j|vq8UUaXmpdZL2H2&7veqIQqF62@)$@Ll7LnQ7RSc={HM0@ z?N9Bq!IQF#A?z2+L$By#FH!WwvYQSTjCRW>!k^R&3>I#4p#TfFdj@_ z>5DJ85f0#tvv;tJ<;jXDm;u;olCoG3{g_ru_-?gtbPhLBv~YKwiD6K~p5vC|aIg!Y zfmRp0yTn|rxk%sB86n|g_yegn8I7DE#(QE587yZk6&^lG8uAm#v`AfoB2p zWAp=jQYEXG2e}fG(Tt5@4rjX>rW|vJZ&%**3v(*-MLnjGKm>h%FMP8}yh;c9l>n03 za;QMxT+t?9jTh+sFA*!#%8|l=xrVatFA-YkS35l)sOd{{;=3Ku$H=l07m@dhi@p1J zYP|if^Tt}vq;HfzDR!(rqn6rA$WVX7l<@f(k2<+ReQo(oF68~Z1Sn!ev}m{7UncT; z@`d^ChCkZJVxLVGDHp9Xtu?add@3bR!9M?1j22MeWLG^;Z|L$>NxupkJ)ly$Ust2{ zcKylCOKmre4{!phs5VKfJ`3_v2tgS+P`8HUN=!c3H+Hb@A$$X-IJh}qzRlYukm+7M z5VB-tCaiMbERctOr`XivLn?yjr$7VS6H*iNzSOi!cFw)_CNR^NO|g+*UuBaw8P@;| zuwoTtWly}Oyh8%zqB$C&wxnbBFb8`g9p=`7R6d<^eBpN13bK`pvs4X(R1Ydokbf33 z-3+fHQ^68Gh7l$)LrvTJ8c))Q<1t9&^<8A(3iEC;Azf;HCX1$jysSP@mn-1X(3 zG?=FLgpxK^RE5!bqvQIFJ^RiM6F^(X8M#7dya;RJu=H{)%|)e1!xcAdWG2K8YAQf{ zoe_k=44P(3TUhO$=cWj$y~Hy>TP%Jb%_7vGmP zS-;B0V)G^(-*swh(*JT9on?W;^`%+soVGO>Mq}R?cdnH|*H#Y>E=Jiw!txgOZTof_ zEP6?RhhNL-Wje^%E0-@~0~PNx9oInEk@)B!?X8ZZJMQNpS}MfEb}1s-%@@vJ%ERxe zbBW0*-{bH;Xdj%?-Ie0qY=R9O3(=xX#3lIVknES#IpJ|b+5%Z&;TWUE*!ep23_oF; zuL>j59G*4DWC?SHVrC1h&QCAF4rhC=U##b)=owji6Cx>YAhO6$5UaHJQIU-iJRD^S zAzf*k`->is27;^knQ;wEr65$(N%at1ES_eh-7C;1yH8cLj0GH&Ks_kScZ86ORtr_% z9SuuwxlpdB2IT;hSrHd?o@N_P*{n4W2sRIL>ztL&~B(`sm3d$4oL84*htz z2&q!5(Si92rKa!AoX}u?-%>9AO3&pP($0(4_9bNb5)TI%Be7YW_}qjM-0UJC>sDpW zV{u{d*lNG~B@4IZ@XKT{Wlurp_?sidm8DOy^|QE`RKvu^c6>JWd8XoP-BPXJ6q-R< zlg4%7{mVQ-Rw-xumm1Ktr`h`l99-Y@GEYx*ipJeFEEA2f1|jGSoc%1@JOamMYcTDV1&bcE#t5{oUrlT4I;k1|4F*av=VPy z`%2yjtKPoi2&&)(7!;ECfs5-~IkBQD9xBh=-=~5S6mKmos#1tac$gBBglH{ZCM-uo z?BELR;hcTKkqZu25)6zch7{McRe+xj|F5pL$rwS7gCqCSbDDNb_DXPF>#}6)QfuY( z;l}0!Su&&3Lte9_YL%A@O3OUsi&M#)EB^rkVm<&M{Xb*rAq={;WY)E2=L_GvLGX>! zF>c#$5!TB+Yxh2912gQD^Z-D8On)Vbr5|L>KB8~Fbh&#BZV+$)1fR9l(KMrpM(5bWgjH12Ggb6aFA;AGC|2cg>FmT=kXNZdTl72J-aqL@QW$I-{ z8#U@Y4lDPgjPI?NyNq=0A5&tjGn$5Oa1rJBp3QMNoHV5wOzVf6kLqv?l8$qliZOhv}05WrtN2387%FOjU;^f6_dq+^AFTkvL@l~w039DqA> z4klf*$@5@RY)U+spfXB;iH01^Yy=Q@d$TAPSCpSttV6iH(ntaEF{HJ{vnAs1Mj@0^ zElMa1x}5*pV}h`v)Pl(7E~!60hqbxBw6XWpJb4^Lti8c&&|z%0%3J6F4YAXt(m^~S z$a-*(O;aMTi-YTC_9-@V6V9EqF~oFNZ??4Aepaue&-aZh`?A0&XbU?#h@OqvXUMiC zhT5-y@6ziT3|b`8;%SxIa=QvxqBuDel8C>Kdu@HxG%~zDNN=IT!+{SVo*e2$dn&T% zS8g|L^dfk0*rZj}1Shvb1`5Y7{fe&gNM(%orLwPe)h=Uty8lOj>!i^DJ&P4hY;-k! z=hPI?CoCYy?GI)sre=5M5Xn{94k=Ucj&&%bUFg>8)G%U+;ImJOBO%YVu2Nv)us~-h zaL2u`2YG=~Rw=e!!At91*T++JtHc>Eb>~2x)j+hBqB@S2TB`@TiXa6d33xJTS(m6i zMxEqCtOYFGZ8~;}wmqG>9g(FB?mEo0n?or3k!EZHKDCpn*S5POPva%A1&rSdR2jH$ z@gqll?lJz4SjlD?@Jf}F@eGr|Zo>=Jo@px;fz?xOzuk4A6nT_8Wq`Zn82mFHTL&qU zkFW-802j7tgYK5i%mfvIEI7Nn-xQFlaFxgyEx-H-awanMC#SiJ~FLGDWbcL(99cW1Ei~2 zF3ej<{fe-XH;6dhc*g0UB+pvY;{}Ip*jzfD$Sb}mlZze7Zq6XWIK#R4MjpY4 zE|RuoJN0|T3(aJm{&cpSY3wL<1rU?b@rPUj=)vFBUNCNf?g_ zJ40Ka4E7iJZT7CjF3=@M<=xm|GeD9|lr+N<0hlANUy!l`^>TLNMyb>&RS`_Rouw|K z(CRniEc+(_xda*jaOP1tBuRmTDvuSk=I49#GV%v5+_vRi`5A)U5S=}D!63s1%vo|iz5LzNAbr+&!h7jMhfV;0Obch1&u`C`0Kd89F1?qe9FR3N0z>dbA#lZT z=-6n|z~MkKl?vO;`J^Br>{#ab-(onk=ip<78usxHdBFonQvRJ76}nZ(eZh7n`!a{R zGl8ps9~E|SB@4%)qjb8bLj*m{a!)8Th4Oh)Y&T#8m?&Ojz~iHB1J|&%TvT+!ZWFMo zkNC?no~oXPUm2c=!Z-g<+nJ{j{^j#`jLTy0ap&~mpA>-pSf?%mbZ$4Eepc-I=&#wH zX4?;-a3^MGY@~+U2jpBWUJNJ35*NfPK!uY*#?;6V#6+5Rwq_x^uT`(lgJ{W>LX|p_ zZ4eL+exo6*cPq906x#u}Zs{@MhK-r<7U7(hUpD%wx8=g`i!`1p-?6hZr39e(*HoYH zvnEolv^sU&X}7VcI|{umu5f>JG^PL!Dxyku5>M`pj|=-ClZhwmO^-#e2G^`awL^w6 z`H8__h4r$(NrV|;9o2J2A8JLM7(hkY#=y)6Xm-eKKj9sr*&4K4LUxmNi%J%g^xK0Q z`SPuXtNHSs_f_J33l@KIjhU0YQ6IowPIX71i>#5C^zk|G`uk0O$h#slU*uMQw>4cp zPQ{E`TFc-^Ay(yMlFj1LrYvwo#=X`V#E>A;gXN1I>Sqsi9M(gXI&mp$XkEuMb6~|q z2@7zFAJ&c^E=h}(Czp#Eq-a7f;dvi(%zL@zd!6~w@t96slx*(VEb`{50yeqp&4M*J_{7*NdpmpzcwhjiNoUddauU^g&P}iyUpy97^y7%GuTeB{e z@WzkN7V#FZrJyZp?#71!5h`~&8MAIN7x7+pT~n`+J(CZ0UZD@|nSEc?_Krh4Zys;t zqI^D9-Lyi38sR0yz0Gm*O0V+S1mwiOR@%K^G}Adx2;g4{57SdJJV1*0mqGZ!nah)f z{T;Raajl0HO(ZhkdD3ZACHZAgg6%1)z8(iA{(`YYi@7Ax*Y_qgab#^%5-AqpgKFnrUrs%W!7xJQF=KF zNPFIas%EgiFQQQ=rB7`Bq@`198SN%|0Vaw43~Udh{b+O;7^8G%Lxz`4=Me$#P$-Ib z@X*vo?$Y+mJCGE1R38)EyagrrPiMo+qV384eQJObv3yvEfe#2dNIV^`f!FS)12=6g zW3^|ND_}lhvcSCNi7q0*`?e963pO-jw7=vV2T0*$C=)ZYOeN?B?AvVyxfLOk(N(bH z!e`AhFQ?#~D5>g9MWUE zC=td-$DiOEd031OD^|vv#>GVuP47hQq2?%7K_i4Q!m1JhS|89&0LL@20r!`YoL%ea$f?B zgh$IQGOARUhQrEhG9uxa2io$dn{6R-P`G+cn2)$1276ZCcP?!L4IT3AlJc$)ADO?} z8*@Ai`*<|RvOWeKtVi3E7^Qmkd}VW7_D&X8vY*a3A$6yBH1kDL9ZHV5W|)Wb*X0@V z@<_Qbk%;PtHRk?k9e4b}7IZQ6ve@({n z_4~ytF0PPR32&i*2k1bXLBsFn0T)Tk<}Z3zg@sXz)uX6!UdNb7XuW$+fJ{Dc>$C8D z+6QjnquFWfy8wN2uQxLp@$UPekqq8B z7zj1EtBwK@B00au5+!JgwW>>xH$q3RiXW{(A`^Yc>ud0zG{HhjZ4r(v3p6Z3ojwf% zfZMqrx5SH>Gr7s}C|imasxjESFXIWem$51-r8E!awzMxDoifUZEx&mBXgmn!AS0Z? zHu0e01xN9@H#pemd}?l+N4ke~)8JXA^w=GX9!3~%7z}V3HJ!Z!+e~~95=Q}d+Jjy7 z@|8@Y0BE0bG%XHS_E5Xe)>&qa4fx}34NrRMx@ey4)pm&5tMp}%Q(kf(f5U$QfJM8? z3#&Iee9s|XA$A>?fa*nDnYl+zL0OWp0=`s;(E;C4@N7gX z1v}XW?=n@>7uL~5&8UKqw>6&o&7lV(q>s%1?>=6`HI?sv7#lywq9DK z{r&@7$$>b%7y}ndw~#xC6S<2;rmB1W2{mXZWm1F>vhKRYEf*IqQuk&{W-Pa+T7e5W z%Um+U6*}yWY2EZ#eyL$i8zSH*{cmUTo($YU(iGSKDD_{HiwZ=jk|y;jlWI_&u@KpN zlhJ0mD%MyAhPW@t5u6;-c|#fIyh)Y@U4sEVG)9dRQ_3o;;D*ri4l&|$18lVZ7@~V9 zp4G*k1<@V@%>mK9hWEZEK9lsv0OmK36V|%XU*XLO5AJWpnF{%+vV$WO({<_Gs;N?| z?`^Sx1vdgJI2o7!4-U!iA#w`^Sn(&!^!ui@Z;!L zfyulwy2znWy>fz(fi@Imx-ol+Qbw;a-`Wq)JR@=_!x#i#gz1-mnKH46t*+>^63<#| zW^6u8s8Q+_Wjk~S%KC5yrNup21?M=>-yCpeZTV|FrJvS&|BD2)ZsW1L>>8$b5awr* zl7#ZK0ClutWT)#8JKZ_hy%V*CU@dRZl!X^~Wmts}KJv&n#Vg1HpMz=PBZNbq&N$$! znZ$n6Flbg;eE@qzI*YZqb^dU9=uvkhmxxqoK~wz`5OLfjfj1#9fYe6?F-k}R{lh6* zsqFVioi~#|x5=6TaNY43Zcv2z->>r9{RVI^96gUgE9Xmo2-Giwq>L^qGUqq6~+ zIdS%v=$$spe&^ma9R`}X@4kw89<`C7j*?`A0(z(?J!hG`fgy2ArrOfUqMRSK@``Q* zDuD$yk3CiOj&fdXi&5UqEJFsV&7%oSQYNi<4_IB4X;$jdlolFioWDs1vv-f<5@5rA zmiieredPFvS#l7=9;)n|u#TYox@uV(eNH7Ikj+PDFUdQ|Rpb%v{r!Mz%9oqR2?;PCzv+e*V#gt^09Bh`K{2l;>DpxBKx63QRHy znq0~V?}}!vmN^Ia)Lk?9Xpt-Inn~B^Wu;umMM?b(RfF4eg?TjIwL=;uJOnWH3G3h7BLqc>Ov#oPYUIu3_aA$ z6^EN$iH75d2VrukZc<~XilW_&kH9mInHltu{=pFrQ5?<*iY~XjU2w!(2EIi%cPKDs z)Vcuh_s7LCkZbY_tJXzPlfX3xCo2?O2sr|SS`WTf2sqA++@Wa{p{w%GGr%#&mlA^2 zpETBiHW!}AKaDiZHMz7ez;%;YjBuYsHpw5+RKf^~teMd-#mwYTHP%Cbwp*zTOFf1o z%lgA#Q8^ugFD2}`*V}TF)6HU$i?stghyeAhNe?W&zMDD|2|-{K%3K ztjKfS{$>d3Y80i1*V}Zyb^)Z!8K1-9^J52-UYN`ceuLx=?QLC;Ju#2^#fj7&hrAYfU%pHuO`a7k zWag$}nn{N4qB>HncJn|-O3BQqN;6@#NQlUrGgbmDeqmHW%tPbI|9v=l?$IdCftn z*?B4YF-dfZ##-tlsV>91EEUK9!{|{oTPe;IE^@I3bz%WD)niWEEy?lr)*I##ujql? zhp!1&skbu53sjKeyk?uU><#Y5p5)?0v9->~Y8z#tpx}{YP|td|0s9O&xqy#)vQtBN z0k>_(NA)m|)DAFIK=7yUvxeYO8lH}E)n9TSXL8>ZWB3}dLI6N=JSGA_kFSAfxn_#{ z4d;y)2fk7szrdbq;H&bnTMYHA8O>`XA{mpk$d%b9t}3!#8@s1dj3b=w0^Qasfah`` zMiKsW&NSeHzc`2UO0IBIMl8HER=g+$-A!C0Gg8LI&OWB~uMj!$X0?Mf)Vs@B>%Y^3 z6vxKHU5yKtxU~rmQ%K+AJRT0N6Bad8SN^_4O@QcbWQ@Tu z3NnD|zXz=Xag_r?rYkOZ-KNpXcavvmaGHXjctc`gl-l z9dz?SAkvcWlM-Sdc>a+ zR=m_sZB(;8ZmFwsA%&PTP|4-*nCDhkAXbeWt1mG_9#e=gZI^-B7&NDot6x!AgQ{ed zfXD2HSWqZ4so-K@0)M~7-bMjoD( z%l6zZa!{o+qPGlc^ld2@c$p;&d1E#tZY<)6?w$peywcvxE>Jd!r0blKobrXeE-iU2 zRS%A`lqQo+tO~d6Em(w4?cR{1=4R3&WM#7ElSG+-kHqSX&1&hL8MlOmHtu|RBdO_D z7)1TjoVl_c*xkZxUKDYWxNvmEQnxE+rI1+V2;DHItoK%MPm8X4FM&(>SgER`UQnpz zjOd-H=Xc}wY!$!djY^Bjb!Cs9KsEUBDC%lpEha*3205R1@#%wRC9tK;ee*<0#YuWm z8MjPo^|TmuFV8mm1eCQS`4|DY^;M4#IJkaN)_a$FT59nEq{Ln41(5jcZhWnxh^S2X{EN8A{(hGdd_~N1m2fJTE-HnAimIJHKF5CD^KiPay1;=^jgXAc?dB3U>B7iwS&UwZ5gWtF*7K z+^XUGwn2t$hduC|Ep+sU1hpQlLgX34kedE5fJx~_;z1VVv`fGd62D$n(Uinj%>hqY z5Ym7fHm)O^r|M1iA80foOwML zKBIMAtNX1_b*}Kidave0EmH4xNloX|4L8@+`7Oxtt(ga|4zpwV)=3r4MHVP!cmuo4c4J6Mcqmw1D?xtC!1F z)jCX)N|l+3E5nb)%T<*f^9SoBzMiEg zuNbMV@uEy*94BYqh+`IFLe}lNDqNnSptYrcpCfA#=AZuT@C9X~3uI+J`E)-rlyEEN z@Oa)JMOJX2Efxlq4h0{};oTLK7vDE~faDmL9W3#P7T~{JobRj-<{B;m#%$)22DK9) zU%>dCA`IqJ2-nT+E-ZCbD}I_tpAN0Yq>0Dj23w)To0Kq{Z>0V;h4?S|A2i zNM2KAba#zOk}GH(QY8FBBp&J8fZ4Cj-@~YF2=R!~gF0__@M1b2*EjpCbo3xB5w&_i z&L$0#e_lIN=-?=DX2VcwTYzYwM?D$N5V~N>z?1F+dRYx0;}gel+{6Iyjo*`Mwv(|W zBkA&O(ciuE{l;x~pe}-@g%`}pe^u8CQiCy}VwDo;THfFgsQy0esP-w@{I88$DVIUTdg0NOJc z)e4g|Fdi7j=^_|<(rirNT@l^|j&C35Y*grs(uk&(zlUZwLS%$_RYJg3(q&D7o5J-D zc-e{jL{U|}r8{#IYGS%`*opfM!AJAL8jxzpEb>Kn0n`_&Z`Pq1mm%pjk`S)9wNsH* z*k&d>=m@z3Pa0lN8@ZCg{voC_4QMq-5I6-6b=+_1R6xvlMCI;y5N>Ba-c0-4O8K{& zm9vxa`;8RThY(CTW_^6LmSkQn#=bJkF5Qf6l0o7GQV)D_@n=16aQ@fDc5abA7;{e} zWeiMDpLIKzuSPe(LmGPrp7JFY!{!mv06frR}7-W+Y@zJ`9PYl0MQl;(uQkZZJ(N+4h5rt7c37v%+LVfWXLE{Zcw z_V4FklY;D`t0ZxTB~Khm?a6lJJ%1Xvjn`@RB?5bfGOWMta2c=Dd;OE2ZiP7ldCNUc%==WtQZHv9*#FwjlAnAraWv9V^d_Xyonb9c~zr z$5d?oMdZ4%6R3kaC0??Nk40D$KE&_N*SK5a3dqoaU~X`rV5L8MH9e@lgflX~4N29Y zET$z0Ep5(>j}D5DE)1XMCp*<*I&(N8la%TdIIWhQ3)%~cEt9g z9Q*PNbEiFTpW?lS*}wt~ucgsPT<~WC9+TtX%KU_s4oskw1yGX>9Quo0AwrTx0y9#% zj$fz6XMa>0*454Zk7tzxkVKx2WSH}4;14Tk>=PEKRSEoCA(*U1uAC7=-=_cl4x)d{ zGw-iQ-QPZ6J9`xY0#5qb%K-fC++E&Q7?~gTX$q+iDB-8C?-?;y36c%jysI4fm(Lbd zC!W&gVz-CEWRm?h62I4&Zv@!a1!(uq8++u9x^POk18Y0ce~W)DO|E(zl+Rb8NCA)V zICLKDdn_WYem#xDk2KhAJ4{zE!U2^i9PN&#yqeS$hPz!gC_BKRAWA73#svs~u+Sy( zIrOLiOlCukUW5l1@^7-h>uRjR6D0F1^Fjd&9zxQvgc^EY|3V)Tf~-WN6r|GT1S(W3}1ZE6!d#| ziRCj0k$Q6-DXLwAvJ+n?h_!WF&9Gcp19!(Xa^@b4eFPX;>+)pqvjY9zdr_o^Rugu^K~SXG%KmIo4KeN@lR<( zM03KxxQL{-#0Iz5%|ch2ym8DW zSyJ%mRYlzs6d}#Zb5c?%`p8^$o0F^;hdx|P&7J<#pPwUne8!9-D-;I{<+c8KZI&iS zq%^GJs}i*?3Y3@zsfR#aR8Ga%K=pZTjJn0Z#}z-LN=xdz_kK_91#D4cHrSUj@MmW6 z`o;|(bKkhb!$Fh9L6H&`Po!};hdZTbn)RE8O+SIBx@9wwpFxR z;Y|ZHew{^|rNK$6^~2R?tC{A`gpU-WTj#WkboWoD?;ktQ#S{MsxP9hex(=Ow z3k{G2c;P4uen1*dQAm9|B+5%G1vleX_syi+b4hVC%bLaUF`j|Eaw^@`^>;jZnC~{u z&8R@4olDOnR3O8HOZNH&{QT%Pc<%UhwQy`a=))LhOKc$mEqDxOyLOfo@4d1VD5!t| zP}G0|Sz{>;f1eo zxbN)2Eg5Z@FiAndxcK_OKhQ~xkA@CAC#uf(;>nlFdhehnNzqX@lIxGKglWKm)Z^2j ziI<9%?)H#>nB>>e80S(SDnYD#pjb{zZw~oPSpwSq)EphQmlJ#f)xlg+K#nLhwF0Vp zIC>hNBWiCRp|gfO5piI?03DnM742@lLSY_{p@Tzefz!TL>omsV5uPtRygz1#X$x2_ zT<{-hg{{EHuX+s%`-DDZLbVFf5p`4 z;UCY%RW~-9KyYkQ(7O_LcN=}V4{SNWTmmlYHYyi0wSu-LI%ppTzTZA94ZM-a4LnlX zG^A>DIFoC9J;aqSl?6M$N$dqC-%H7IZi9y22gzpH8J2{l6&2c4%z))-V>=ht7EmBV zBN>j>IIIHE3}imS7t?*Em<$jy5dIp6t?^@1t*0=oJ=%VoedRb`vKxb5#qrhtria{-ufo^&y>Qx*7)n8f!n=zIQ|g?!PrKkO@h1=nBqqnUmuH^z3;*r1zp9h`dLBvKlXNluweK~1SZnv=1$o0|4}ALFO6b>5 zdb_kbb4OB${>@tz^OHTOJ2|^WG0^xyk5VSpq&V{%FZ}8}^9$MfPGkJ``-fry0-*r^ z|GBOI#JCUut_A<2^?%T;|D?G7x9k6#i_Qg->9ztS{&kkLSz3o2K8Sv b&;kBmP?Ul+DA<1t1OKb-|70ucfAszb%!=vF literal 0 HcmV?d00001 diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/ibanno/whitebox-ibanno_no_md.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/ibanno/whitebox-ibanno_no_md.rar new file mode 100644 index 0000000000000000000000000000000000000000..1458aafe5fb119dbcf6d940a4ba47a1afe55204c GIT binary patch literal 25578 zcmV)NK)1h8O9KQ7000O80Azp=RR910000000000000{sD08K?yK`lv6Mlb%#002-+ z0|W{H00;;GV}KAa=iOp2Y6un~bZkJXLdn-Rq5eFiHg!`$4I2N% zbZ#u)Z= z1PTBE2nYaVfDl!(j{jQ8VE_RBYXATW0001KVqtD>Z!T(Ka;&=rY$aWjrfIv(jMrRd zW@ct)X7)8Rm6@5DnVGrF%*>2sW-NQY(e%vp-&(bHw>za!>SR6>WEziJ&^tO3Kbis)0m;k|7{G z!XtQgWJf8Z$tbJ1zcCuMjL5T*ZL@uY->{@DqcxB%UZT!8j=Dh_5QB9=fK zQ+g8{BWLFtbz2QwF?3(@U>oR$Wc2bH?FvPBhO6gk^?*X6WK@`B)L`mm?seIu5K|5d z_rT-4SC&US1FzRTq+1Ek?xwC_WcGBgcOn)ZmKXkqDd(H5soih9zYu#w&!|{Kn2uBA zjA3v5xlaBuY<>&xuo@h*;c)=CTemgY}G)`)mzm;$U!nYt>;9C z5}+e+V}-j8CREioj=-U3qNY(lJ{FjAI+JOKzcTL9hf=%k0G~j0*NKie2+nomEaCLm zL(2W4wAXVZ7R2PC)NBGGH23j{U4+#-4c&03dC03s9eoDCpw7qM+F!M~#k9s8% znEI4e1ZPZg$W*Wtb8;>`n%U5mp+Gjj^>xm|eX7Xw-4i_MBWB^kh4NARI=$xx$!f|O z6~~Yt^L9=bx8Tq|I+I4C&Zob|G-{eC&E0DY(Vxhgs(ow`0o$hiHCKb^FQ*GirCY%? zIgC+j{31u0^HB%0CL^gP@>aRk;xQVNb8O|uy0Arl(4rp()iA5aW(gd6RJ8l?I;~N~ zK*^>`dyEx%o>SVyeGHBvT~rN+lznlF_h2z%)6N5D?_k#OZS3_qqYv`uEV>OwQO)|C@)orNcp2V&54_y5SaSQChW1L+~txe|kEhaOvD&`oSMCD(^ z)tA8-wGS+niz7KC)n~2Cw6ljb&py+jKUe40Xlu7)@lo2QuM`nPG6}_&*F%z$E zZte04aY9}>#SRg<6ewy?=jW(OAu|^h6H0mcY49m(Rs#9+yic;z@_%7cBfEuW>vFHc zmh=hH_Ye!)qxiQ5C0M23SK344DlD){^n8jLeiZjt>>~3CGYA^~`A8!-4D{Lq4e;Ip zV_yUR05<_$qt>F{45&EYMakh8o(i%)WmnkbExdt1vKw-T*;`uW%+YP=M43?L5&lds zS(#xLxoj+;rI=|X4fNqhonPM2;x8D+c%N}Kd;|6|$Bct$B56LOHVwfvrE_H18!c~| zvW1-Ybx5vQZ5F70Z{U(zeD(ce0c{zAX+gmtvWY)t;l3lEr%~Ln@mwqF^-DTHHm7tw z6BDN1B5g!@?-ip$zkBW?h>t0u&xTE?J4C#C=niqD6>{?WHAyQ;5T|;a( zxk6ou0-%`4g*KR%->{2pQy&O+g)@kVMk~kCRDHZoMd7DNzVmHCuuvL_Ik>|oD;454 z3m#S-6*2#zsndJhAglBF{0}1ea(FTm{f|ig`X>=7|F?;xqLGuCoy)(fB&0BE;+Twd zg_vyx1bn}nlJ)$8vIr#vE+rYO<@|~ib12=o-OP0`z%N2TWVS&9iQp6Ti!#pLJdHG1 zPI~rE6osSOqx+97E(J&$3FC`9VeMlyX)fE#>%X@ zSrlb3N!(fde$tg}#%hTJmU&>pX4w@qPOr6gsjl&v!ZZL&SgT96Fx0t}j2*Y7(7}zf zLV0GLOrOqSRMpv!iS$J-u_J?Koo&!oGt>n^s<#u8ZpkK!dlHol$TL#qqY_#8cY`sC znt0^B@t##B@uc9H-2k(M?iyMqvHUJFJ|iDFuEabjkoVfH;deT>b?tWZqgx->&R=k3 zFI=LEE>h4o9+TXKgBgscVqE_`xg4ZgyfbG`vw5PrOfz~Z#moMS#PW;gh&?8eY{WII z6V2`g{-|TN?aGSUTdS9-_6p%q2RcnPIH9lTrQnPE$gzxC^i&5*s!q;_2{*)OJu7)x zOte=J0_6e^VeJmRy=CwbCh_qt5fZa>nw-#y2Iy8)kHB+qddj7-Mq8PU!zToym#an| zyb(9_H*mLG)<|J6OeVmv9r`Yr12!6bn^(5;`v9rh4(YOpS~B(mpCJXu66=?NOh~p( z$;;t^%m9n7-=r%Qr&=OpW@`eb>Vnz>W?i8@c;G7C)#!NC;uKrxo4bRB7&K5vHAjJUGE8x_+EznQ{WDZxMC2HS2_7)D9F2PgZkgDdyTZeQ~y8OG*_G{;zGX1NV(r>|6EEIp} z<<~ZHV6>NEg5-5eLJa$ODdSZVAF+%XPj>FFpxZ5`!pzzd`|z)B5NvqEj1et4j%y)r zZnn(%JHuB}#p69Ds(Up=w@O_ySL*<36$`b*zV=a3Cnz4Z6UJ}^9D6qTV4#aN$a{``}#Ss8#vC?xC*{UpGE~KOm z#|4LRtpfZ}uTihj*0F6-uW?(hL_h0z>B*2KPeSf&j8JdH~{MdnVS zV?=43pq`vXMCh=7)k3F@w!*3TAq}?z>nU8QFJUHJa4@F%p>U^U2?4cBgJM5f;Id4P z3$`AqR~p>m#12N``d%^3^uC($!*Zc}jAb!tnt<%DjOOWD34E-ZU^{%Xd z@);n+PR+7OxQ)t%hls|ensq>Y&K^0oLbIf9e)TQT%Y;z#R0r80LwXDWH$jp1l0(}1 zsk9u0Jlb$?*^9IC<3OfYQpKO6CE&2e&5sfgjar_aPhYKHuW297#FR#QVm+6k?8-U? zj;(IHK$6f>;6T?8h=OLWd{sS<=_cVY7R5FzL8(DnW(EYJLW{?6gRW4(=yY(6pKZaV zJLS)7;)R1-;Y2SOGNLaR1t>BKW98<4H!3=q<=gpkE|~@wU0{c)TURfcASgv$MLU{g zw4J?^Ut6r=p!jjlkususX}R!O%SuY*(__KnX5f_=uBCJe;K0^#h&g6sK|>ZU!eoRL z0a$t)6>E^|iIG_=jbqrvJql(%VaY;1y#|f>@Q_Wc7XUR#^&oK6p9SIuq<}{;lHPKZ z{ZtAZ5uq>epwRpi9UX#j9JT`2Ucs1|fsY9bSbWt#LOnC(bS(YpZ(QW|w6^A?6B{lK zrBx~^IRnlKAW1P{1Ml{A%2{44hx}pyEWD#nm-hvSC$yT+d3@;)}EC4im z=Kf9eSK*RFs)<5f!u9))bkDd`y6;zgfkcekGkLb=ni0BYera7j;-X{Hv4KSmT4ziI zUFsfp;vW*2r2z=c;*)G8d}Jv(?twjQqa0h?N|)^OysKLb>5c6P<5a}W5JVzn%aZBv z{kV`H^H2PIfSMPzQCX!<x^Y%C~yPX{wgE2ynz5^Atz21|u=DMU@pZAcOEq&!A` zzTsd>$1(;u+!n}F<(>fd4IHvN#OQ?B&1lB1{rcxyM?Q)!$Iu3O@QMol0e|_H$tiG6 z=ir0fGpzz1^!El~cWM{R)94LN6P3g~93`LBpJq2ye_DeF_Ag^voL1ND>>?LYM&O4v z7pC5|pQR*Xrrz-WOnO$D11p3Dlq}(X85aF~T5S^tB@{sG-nc@H0+SBSc(ma(@t-#V#XOZ3|{2 zcN%0$RsKP=>&@R*c+%bM;=6${qPPkv^4r7Q8tTjt;{qWenPqvxrzmxjMBl=E*^5uv zeg#sOGC2z!&5tpluJ!j5fZn9D#iKwlq*9GCK zD∾ADU-weuy-VCR~Zx%QmYd-uvWGp#&)gGjBR=w^ljj2YvRF9&80_kQ)h0q35 z-knjPm~1WBGfsO*+=19BQBs4mE%O329aT5)vC>xqd*NHFTwo8mUOfZ#QY^XxGj_q$ zPtg8$h1hMSUvj`_2ew0MR5Xi}gt6+WqX$~$IeuPWMS+y&>5U89x@>g~e#;Z0X zT!}Y~&{N}ei5BTqWAMs#tt)u6l?fl*sg8d7lAvl~TQk=2=2mL{aQ`T-*krW=jASlB z1mUYYbWqin%>VQXRCIcr8NU|!1vBRW!Ct;ZEc;tw(5yXs?`lKwj-;oHxul|;_2O1w zmv`f%n2Qqqy+T}JK_z%yLZZY$HDYw}=tVZ`1V;MMBXQ6`bRR1NTxTCfC5|}*+6ISD zZr0o04k~NQ$^(6ql{c^k=O-FyTAJ77!YwBs4ec8XLKpbZ9Q{xf21g7kFTX_k*WVcj zp(jrSf<2Lev1XX;?HVs1QY%(+vHsZxxst!cu8y@_g1-%eTxu&({m zIGjhZ@E2|-lburhY8C#yc=qxbAWpDA!1_+|Z2gGhL;Lxzfa4?Vx8i{Oy>C(MlAjNw=c$=0}TCg`%khE{^eU#%~eFa`Fi|+-mYlA7@q|Gvfq{- znjXh?^IH^|P{RY5k0ru>%V+k+CycS>kM1E~1@i(bpKiHoH*wcW`=cqw?(_~N36f(3 zb8<=WvWEb54AY&okCCcYE0QUW+`f*J$D<;6zh2bG$Hd_fZ3;5p)BWq!+hCOKMM@*t zS$cZ!3OfTCo^yjo3=Qv`k7SB-HXEGru4yaB&bOztM8Ra49YfMes3KjWILVhk$=6E2 z?59qPrP4Kh@~&qj?ZC_8S~}_wnkb~I3_)7sUh?KF+I_3fGvvs$*-*tCESJNrX8jsi z3C{s>Rsdq-r#H9aDi?L)T6<~=?G6>+;!tnmH46HOm4b`(OSpE{FImo?xDsNVKxdtS z!!C!}VkmwjgAv^5jcXLyb<&Dd=s?8ZF4whxx$ZzxH%V)w@5$_qG%=r&gY=4B_;ntupNKt>}+$yydsouA_Yf(zS1vke90-Ck>}l{oD*-X26=ad7ez9WamhL{Z#$w3 zf9LV%yL|PoRLKEHTrJvAWh8FATL+YACSFIB+Y4paEcJ0t_fu|!_O`!cWL!&=avj^6 zStEWI0c_r!-ZuJM%a6M7WCk#kM7Jq}xMg_xlg}HV889fST#bAe<`{PH>2huD4KF_YOb_0u)`R<+MV}f$+2%gt4Q^n|ka5QBEn0-si+>62HnG{3khV1i>XAMX(}ciE_gw{|mk zN(eH`jDK&VsL)jL%-WIeE0(c3B}~vk z&a%Zw$}n{cz!vh_cwS!bE4nm+?WyTx!#LYUPBS!Mw6fs*WM~_Nf^BYh*^LZrawHm6 z!nwr&<_>KZQ67R-WrpNd&JhjV+TD@Y`R4Q+F@m*&uPqe+P3tm8ze`rJ^cdt+UZ-fkKQBSx;%X&r~wgkfV0z!ord?q zwPzB-M@7HAeR13Bzl!s8`8jBM+cwq(b>wPxDPFp2wu#W?j(JJf4TG^$Xill0wh>Lc z?xT9|K+z_W@5GaLp4Oo2oDgP(7ZrjPOokO}c5BRaZ5$4k1nwJ1_sIw7acnb<8q#5? zgAsT6iu_)io7ExpSPPi~j6_UO#OrOr*QAt3jl($bSj9(ai`z*O|8(vW6Mei+5p~Lt z5~44P0Z4XJXma05sS}#bc#{f^5m8)_IZcDt$D>_a^iEGZ(?MA2YcLd0ob2pO*u@WgTCjp=#%x7;ozNwn-L zO|2KCpOM|Pv&wW5xq@Xo;!5KM(q6LDNaIL|;({=KOQHI563xQP{7g&Z8n-q=@~2YQ zuhhiM#~hWWv8V;Nh$D5;H*!oprL!^u(e#>?S^gl4eo%JvpGzMB420_q@F@*6V%PTp2s9i~Ukew#qzR zCxuE>)r!y8@jvxQxplsVgI!LX@Qs?F)(dVYqLjBJgp zzn7E&=fu7rb$=#len8f}#V-@bw!M)?y{us~U$kq-j$Tls(Aep)l(HWVd01q+6O=Nb z1tmQjinB=f)MnKDB8%6x5!YJgpVA)ruyiT4MKVuY>#_UAa?*YkcRMjYx%PJ2nvaJ^ zUj}XG;r$1-?FvXWOU|!$_|vacQY0B7hP5~D@gPbb@m+-;QpG-+6q8)pK(+*Is?fK* z*u(*{W53MA5%EbP`S*n-A$vR&E)cr5te`z0bRU2dTf+*r2`pYZ09#Q*q`Z?I!Wujc~vFxhW_*ZD{&) zKosJ)+U=Ln6z>3#QAJ3w{|5c@=Mc)$2o(QbG?5RXh!J=p?8b3r`Bb*)WVR{8#^gf5 zkkX~wr5J`I^z32yL*oWI7n^}>4j|9?3?i7URjSqYOs|kPG-Q}glhkR`SYMks?NUlc z<`~sIl_}JF)BMr6%wXoPt;6Z&^gb+?i_^^`XNK(y_1})M`sgralC4@KZZD zrx`15Q5krhVl&0X%+w7L64mQb$FVx(*GIr*1L-LDH$gV>#lal2ia6PgY^q156Jpo$ zE%{q>q%jELn_>opJ=K-RB0ymc7z`&XvVx)>LOlIdF_pU*LHC`(=;vAoJAZV_8O!J? z0S4)vg*w@jF?9MGg)xst=0r$K{7$>N&ivpRB{At?-t^~^z^%=P!73bSdA;xylm5_+ zH%cpuY39lUvPl}fZ6SICRm~f|?Fy!PD;lh=lb~n2(w*TCvq#-v4R7Ps*w5DLs@!R5 z;_viQnte{tWk=RpaRV!4dweV*qSx{WIXA>fz=%yRHEkJX6H1WKg`&b~VZ>D9wM(iY zxA*~^_c-e83F({0XN=x+T933~ZT-0&MPt7RE?e=%W(gI?Df%n_ zo{{i-qu1Dp2Z5s;{+JtD^0mHX>G$ScU5hrvo3aRG8|fE+AaqG%8)JJpy4O`;V=y}_0CO9<5U`KQ-ew)LrUrdwgt=6Qxyez@?4nRp~9#6g2 zZlylf7T;yAy;(4rL~Xx}Xml?fPEWcxf9N+mMN+=QKS=iDgvnzGn59~*?K_n`qkik< z;ue#^PQLDyf~~j$znERtg(bmuTVuh)-{Ih3M8q{4?{k}o`eGc(nf`9Z$j8==UZWgU z=tw>-+c~;FWczbi)>};)`DYzPpL1OyNex&KOc z)Xdr0$ihq(=C%Fdm{C>aV z3kvu~8WOy>?cryq4rV|@GM4XGXV2R9d+LVo`M?iT^5XPk(Ob0_6JZAhDj{gF7UM9* zR^ikRBM(@TkUNMB7DrMcaFC>r)Ie)9qKRO+AN{F~L{i;SaWoKWH=U*COqgi*9Aw}Q zy+ts3!}E-H$Cr;aF$=!Hjytt6D%nnCGMOcR2-zY`S@ad}FIXaR-gyiLdZgX}dZNu< zAvUqx^!DLqX-Rb@G|7bCrY&qo0jC&Sao?C>uJ7lW>T~f97IYADRGSU8fCu1Y7V{!k z?vS$G$dp`GF5OGYAS9E;2W%oPs9BlZsAJ60EpnOTdHMhSm7HQ_xufR2k^_bW)jH%FN8z zSlCTu*(;gz=Sk*;mV-f*&xbvfE_jM}M(E@VkIFh_+}TQ|j8y}X2Skn3Cx!KQlKsyq z(pYUn**q5JE@kPHH89p(J2?E>i|>uP z2p3T5tChtHA($aZ=9d$H8fnIt<-+`cZImwie`sH`^>gO=wN_fg-GP*qn&Agb>AOK} z2p48rKo@a+jCU`w{5?~AXzbu>nn!9rj3^~u(54S2{`uPq*-Z;2?^q~U`Y(l;apHvA znCx@Y7;9h#5=4&m%ZBx~gYNTb#Zv=%NDd3?q>i~Fx@XT&W2(o61L2O^XpPDwVV2xv zhgOGCRm+e{U4|U&tXpHht@5zDQ-bJyaergJu-1-S%mq3?wPA|a_UGp7@KjXj(ugjD zedLi1a+xW(!JZ6+1pAszWZ<@^^A7Q9G?m@DaV(8Ndh9LPsOjn^EyiVezi5DVd{=f8 zd3YwD6f(XmADg$KWOrv%IrdHEh4fW&Z#mtV5W~9-!=`7E)Kgby;qKvfeJvY*^)b0x zy+H2-ne8m%PQsIe>5p^#hK1qkK)L1=qX^&tU6^kFjK{QSvwDm3ZX>G*Zg6vxddN!S zf+}TM0>ftVWAy=zC#H8<{@<47E86x4b+HOvI+N1i-{l8Tkfg_*55r&vL!>~@i0tzZ zfXvyc6*30y@#+C;-Bk8*TN(z`E@W%w!IE)*C6O=3(@oY1LMsLujQ(^I{7Zf$K~QDY z58S5iRy@R88YhC^h`Yz9hLXJvpHA@O7O4;9xo!J|qi)xB54=+y6(1aw+hKVmOWO~4 z`xXJhP@`BloUP86eE=6@Ttr9k7znGa;Q&LjZOVRWZdk|dkn6~-n;(RNH*l;&>~u!X zFLls=1NeRmrc{wx)>-1qg!77#AeqGIN+a)sh~l!wZV&mUSN-ff8>WApH)EJ4I3B+P zS*mSJ!cgo4|r+Py{P8Hl%ZL!DN+#E-l33fSh8S$lx}6>#7Aq!s_+dv9McWZ~Ze zMvBsJwjrbBmhGBA99?zv3xUER=bnR#BS2_t&yO?d(>1be5j4kcA(~NI!ZCUX68OUD zDl8P8N+qv4tSojG5eYc|GDWUZc};Z=7Vw+a^%DUZ+-h5}3A7;T_u#^+gF3wO1Nql9 z&@o62)d&v)GKmKQBK2QS0~+>D*8i3Qv|v0`modI}O$TJjC zSYads^9_&5JYjw$W$aJmO4^{vgir&TT?=d?jAg(%gtg2TS0b&&hN){>*Q|y&Qq(u! z)fT^ZUYNUOQK6e*Z+3oNcUW|NbG=0OelD{>fx?ge_D&C8#!e6a#n(O?#%g`Xhtzu` zLSgOr`<0iFAIa-39?AMPNVa;ITS$vx#{Sm0C@zZou3}ac^yl*)3In?tF z0%wz!18exKiN4L9aTQeD#~iML$89l^!v49-m>=^?_%b^Zj?Wo`TiXYtV6?z95tM>Q z!(dbn_FBlce!MF~F3QJ8_u7q!;3dKBK|W@fw+CR>^A3&aYbolq=QRV9!NYMa2$Roa zJj#inwtwrxS{+anWsp}*I~T7| z2c*7W(yb0~Scywk+ZJwSV@A@XJFtTyr2rEoSvk#YK%q8K_p`%06T)w^=-~Ge;7bE> zRF>CUJr$~!H0%h6{7Oc^A*FoWq+0ciK(X1w((y=4O zDHRI*uMtCLdb(SScu9n>6*a-f#;+n76@BmvBa6r)?mbhF>98P}>22w{uyf>hX2?p_ zd-Elu#y@WNY$5n}l-rBh`3uO&!79;4=woz#*S8f1Z8=>$Ob)fEpPww9q-%{(wsZ2F zx(Hp5@S-^^lXNoCR}Y`Bc_R8s5oa-!Vr#nsZDlEf{M>Ny^olAne-}n$?wlM(!DwRC5F?62kN(<~E{g=V3-!O1 z5o;M@Y1crPMJi7zDn(aN*A70x(gV%p{G|^{6OgTVJtT&^I8XW+)IMQvD$-+7F>Vf5 zVMAN_xvB^mNl>-Z=YCKLLSu19*^1UFHlVwgmkZTI?(Ve*1|p^gFQDp}vYeFN62tRr zM4zp0G!N-RN*4tb-kGQ+AErklF>3V3v%f_ZB?wj&h#k-ld5KNj^;7#s?N%@j;nSfC zZ@3xMLsCCFSSHvlK?>gql3GDd6{|u7al1` z#or^}3CYl9Q-1}_qQmo6QH1>^u3@0h{X+>lPK|C=iyeTx%hIDAC#eIO$30&;)$DHW z^r77>DQ3+z?nFitD3T17SM^#(S$_D1^j9Z}QJyYq)&$lo?@P{_VW=W*hn1w0QndgV zmfo_C0jR`D+F1>7ozrS(*JqHqrINFNK_BkQ^)u7Z zd7R8Dh)sL$PKNZf+AqLm0h7Ghfp^&Jf?xdPHcUN@xrf>6?C>ga)}6EKuen0|rdAcH zzxYWV3&lNHI z)0tj*&9kXp?ZDp59D7zHa-A1NR?cbVnTKVPtb&Easa|PqEc1}Z1`FA*J*<^}2?yPW zME=Z(_GO(m;@EtNQ}TGXUxV}14f$%=3!-puCL17D7rr0Od_HNZJq$m_VgWu(C`o$* zrm{j5v6q`5u{IdTW9IU)Ht$Dc0J+%9$NW8UuDl4@8H;^#UwiUnyW%?o!t^d&X}b;i zcBdDjtI}PpU>r{I0RdwJhL8P< zx{)+e*s+t27$@;0h86vEubrQ>#6rMcVv7L>%+ogGTC>ziQg@2$o~*7PwXPmfBB70# zIp;Rl6>st`C~#kLX&1yZokv%~tFE{2UGr1A^fQy&5Ppt3eLbAJA>9@U$2Yy0e4N`+ zxu0fz(#ol);?IAl-{Y2_qH-b97gzEl z$SuOXxNhQ>rnEa-9zbRUR^1!wBB#4W5X8Aavn`=m+$R&0sIhikfYp%#tr|WBiKJ;8b zB8kLA8LZ0wJ;VMAeZV>K#-mAl!zJ$j)&Pm~MBRLgOL-{kuU-@i>!l*4<2tj|e27{b zi4|3&tEN;W%x4!|zAAR*y8wuPCI%X96ewn8?TC`u?X)zYAMV~Qy_416<@@{f3THsU zy-7H7!038nk^6cn+!M|P&p0IXRpdW?gW0*M|7cG+EKn`N4gf+bbW**^_~nA28YxrG zlQ|NbgHgYsQX7-aFZgp*!;Q#J7SZ%(_q-XIney9O$oKFxMo< z4%LM3Kn#ta&X)=;0EiGk4Vq>dMVq!K!vA8N67a^XCH~6{WkQhEV381XM)yX0+i)*Hw%Ei_(`BuU(zO zEl)J+FlSiePutD3T5 zTrJH%n(04FL(OPKcSl;k>CeKJDK=haNJTKvk>)aszi-5dBvTpfI*pDH; zVhE6i95d;H75iY>CYgXOwLzySg$C11Db?8=hl)267OCM7gBz~^(cfj#jdtN&A0|I zpv?=Uw(^aw8Wg|?(-eb*;u?2<`=lS=X}ST9$N4G;rJX;Zdj-1zj+n@z;&k$o=u?NL}-lN zp?d9`Jqy=Oq{AQEaZjGxdZXwa-8XvB6-4XbA6Jpb{IUJ5%j?<|opXEZ-JVG~GlIk@XSRjdc_ahcYLaeQl%$NFV&mqxdBu}}W_iTv&U2RdpzEBPBx zJB@Vq53oaYiLumV) zgEO|SWUy6?BOd_tOSPhN390rRBmlX%6cw;52quiBsEci z{cB+)Kr$Zh{m&2_69h#1zo#%_`rpklpfma^1|MJI*?hSWA)(=l(P|(zI95=DNs}Zv z7EFBb(4Tg)mf`@Vm$}6sBxs|AL|{_Uwo}IJQe%itHlrwA;QHZB+$r9YDSwyMPDH4` zprk5MkGrpPjhgF6RM`H$Z~xlWoAtSQ%KQHHpaP8^|N0Jr^DP_JRF6hbC`D$?rJf4yfuRj#@Z>1WJZ3WF1WTRCB>s{Ra`6m zFjA{SO4c!#tTPbTUt%UkEv`X5;%*sXo+5{dqUw-gqhm9)QX(;5u?(;zMW1`z2uE3{ z5sU!DR6c1Z@G!WoDCvlsH1pR=Lql3ej|j4sLRDM#Efjhu&RL$}x#*!C1oR*f$yBi) z1SqytUWgk`M;_zpE@!2sb)>?DBsr=TB?U-0N5L&NkAcAq<|3REU3{Rf93#s2ABJRV zNY$z1w8&b!F&0~wG>lkHS1VQxx)sLYu<2H05;3_)oU4maQWv~_Ps^qlU88bIv6yh@ zbqplYinwr^ zrQONE@B@f-chKn~(F8KaStA~SqM;HcYag}g_!PqnEji1?Qrwd%Ds@^HXjR!*WU>>} zT?Ua7jWB@)ks@F|hmaPTg=2aqb`w9RF);_ngy4T^LI9@)HDRjb}=Ag2X9V)FK0Cfkemm}@CDBh+9chl&8S zXKE0u4tfLkVc;HO9aTI^Eo_}78CwV$?OL&pe&dxGaGw~Zl@c94EL(itLw*mKQ>_Kq zL2xKi7fA@!rQ2Xes0|;I+eP>*qc2eT9aw^LDGu%q zyXL{pqkKirqiT=YmBiu`C1J^jdMOTG$3Q4;Sgpz54x^tmu)vA=VzzasHH{p5fW&;m z{*Dize8r1FbqdpFRAn5;dB(&aSSRv-juv2Bjvhs!((XF2BTa=?deIoIPWE_*$gMOn z++%rXLhH;-L6-a zvJ{;fs6JUEy8dy%tM|z14hBPFW!WdaK$gt)ei$Gc*JK&cj?>Xq-EUe0P>+5=A)(7#Fkaq!HddFi*b%r0>Pl9OT zYws}>U?0a@aFsCH!go*FGD`gG(MgX<{o(D$jQ)O@GR`R18wcTWnO+dZH(;T4OYoh| z^k}vx)aVUjmCzuRgW`ePJIzMS`ZXIYW7bo0RMwOj(*(H>EnUHj$lL^UCGo;t)dWBA znPMJqQ*GQAP2THOKTvrT<2q6h0dz@sZhiHoZT>uSo2DRg-Hyk9fYH}2cfn6G4%#VkpFaRTkgwSZC60UxdF zU3-YLqsrc(9!jNZq;EIqT<&nI(l=K9a3BMi2z5WJ)Bk4Q%Wf%74cbSlok zHitw5ALE^ox?WZuvuRoA`t&8TG4rcW*%96q8=|B;yhWv{$QqMrYRv|^>J>y~)l%{) zQ}M9~CN0O(DwqqcHcVhcbY9u9cSuMjcxHs9S2w)$J9r5eXWg(bNpTd(H6Z_ zW@AI5r@B$dQhs;{-1Cqyuf=g1iYt&^>iP)#vdcDUr#Ql}E$W30sZCkj!gxJ9$F>cE z{ft*6TI|hYekC0g3Ia6s$@HP`WPbRtFwtJv_h>(ooU%RIjL23B#d!6JlylW*+rnCs zL|1&GKim{bt0-=IUAG-7$XoEReMhK_*{5m|IHi&~&Ly#%%5Sl%LXmy^8iZDGQ?B6V zWzaUR5EC{56!-xVRA4fC0Rx6Jyr8XJ*%kB_x>B(7I@0(}r@n3xo;g#g<0SHZZNdkZ zWX_#CIT}nlEtaHU*`C=ZG_ePA?!K9?U1J|lX70X8?Oibpx0vo*x06wJj{ei#@KJ6FS*M>y6y?iOzdAYMfUv$;~%)52Fe#2#eQ<{ z9L2jte{YJvgY-z=_bJ60NA50B=aJrmcca)lF%6S9A#f9$r!P}syWrd?fO5rLe;sJ0 zctkdkuJk(-i?<6g=4DX%Wah5h?TrsV*h|vXNqB~KkZYO-vCC}SMzpRu`|&MoTt?E~ zEt%yW@pi@hrlr3z5hM?shtKI0N;Y*)Z{~FZ0(x3TA!_YReEFGng9fr8RvQ?_EQ@HG z$vN{+Q`@88`ax?R{e2Z79|ys&BQCIlS?WyvY)C@?YN`Cdtf%XWx*tGlrt7$`n!5?y`Xu+od$RqDkMBJz>ZHxQS z&lR~DcL%9m7nig}L@qY3itp0Tb-B68LAkHWYYT`}=anGYK0bi)*-{YmgpbI3x#sG( z%-6v+&&k8#CtnY7bz7S>A@=?zq2G-eS z-oax@;fYpGtyH4*7M`S1i|7q4I&+H0BSZE&m-Ze3`=obi`SjHD9CS{D-#DL}0XA5L zi#g9&Ka{aq=!zJUaM-eid|1!JB#p5b@KvrKhVnUponU+ycjI`=bdxJyJR4lc3A(L0 z=jPmMN2au~PyC71c8s4J@7@Ussew=r&P{?Dw#ON!pYG_QlT0H?q7wK!#eCxP{s|bI zpO8DIyet(hWsBSE!3oc@n}zj;g6x=<47}F5n^7`=j_G1}b0YUQ|1yfwLoY9?XS7gv zqwxql&48RIggR%l9}jfqow-KX@)pYOo^rTwuRf@ConwqBFyH0JwrzXv*tTu!j&0k% zW81cE+qP}(Jnv@T-E4N-q)pTO+YkNJ;pZ0yGCeJ@2$&7@_{rwEab`AClRhkt8-Q4KqbKE!kTYAxRcPydxlR{=?Hy(-0;B)oBLNg+?GOJC6f-eQPM zC*`@^SEkbg{bTwDBg|RBQIg?E#*{$y0c=80AM4YSEFDLs#@Dj@o|i+kywvhyb^b>4 zy@_)>$<#rZkYkmTzFc9N3H#Y*5vS|T8tg1EQ6D2WxeieG?Q^+Y3_9_93O3i0t#uX4 zmKf-{QO9)JkVf%mG~0Z(GLz{xnYa6V$z1_8x^1JMv<@= zHgJw?>}?`;6=pN~%v!a7wG6KVQHc&|-Sa;{dW!r28!LOm>LP|o4FS^FPO(UYc z%>&~WoO%>3T|JN+<}lX`$apaGIy1*^c{Z7GN0AxXacC;L?L{SY#9$d4XkTIg&S#8q zfL!Xi`_^63oDfbwlYrcmUK`RGo3yHGoox*YBd{0h%jRhz|9A|y{+xZJx0TM#L`~X? zP#X9FQ}2+3$JQmMCMw(Q?lRB&11z>SjxEs&|Awns=sF=?<49$j7NWhDUexFKU;>4P zXZk}kga_Ou59`AtiPt>%MdNfkinHayVVXNc1)iRj`aptNX`c>5WfJhRJ!h>v5_U7B z52Ldgy0B;s{!-9*Nc%{xgcS0{Pl>d5oCcLShSB67YdPJgpa!{;84t<){0qTnV}cuXs}0K60W#NeF0iRWmz1%)Gs0 zZT&ry=B_gmiA~{Oltes{EV2AD?cAM7kb zNNhBLQhD=z@9@+b49#pG0byu2CGtptvn&y5AnC=4=Y&RlsyT1aqp%asCeC{kQ};Rj z?pq0yP;I|51AEC-`1YmPen;)4?fPrT!LVM?P zoi&@Vi+q$&LoPBLe=8)l95qgQi>vQy)(zN~E4rmV=Kewk?!#05VT^HWoVY81Ry}1p_P!ZSeH>Z57>uvjz`1? zKYnvfcC8Sn&}OP<42#W4@AjKnEv zk8-sGP64_`N_*gvO*#fj??)S+<{_rjBQRNQG??Mwe7Nh3>P5T_6g!j zReq`~?E%t%0mw%KUjvYK9V9*JX0df=nKH?s$&}&V7G8U@3 z7**>c%ht_+-ysYd*X1G*@2G8LDP82A&7`L58pu=B?nRJQ<>}^I9H^3?WpXL=S$BJ7 zG&9MW=R1XHkiEN&E-m#Q>67a;g4*T{w!84uh++C!fa!& z{poT@Qrdx*y!KF(+n|l~VbQnrq_|n*lIc3gnh+cV3Z#wRyy9WXfT8{9^t+Qxt1=)) zw9Jqh^KlXGk5S9#UyU(q7HowEH2D_5rb?nNzr7~K1C~bcf<)#fa}gKo#9*bX+}E!< z8apB!i@l?rUXe11%#c`$0QRaqM3lTphaNvtY`=kI)-ePmQ)9`pr>HY5CBN^LyMC!5 z>d}{89Yf@{syrL_X=2YKQJ67YTDzRvQpQS#Jy$5LTW0vf9ahP1Ej2G@O2>Dylkj!E zXTFZ|AW+}rK)$#a1&FtRl;5`8X=)eUHE|H`Nn4x8r%w$321z=Qdt;C#zrtJoB=1$; zEAAiF!s8Ypb|ItXzZ)`|(PWN03W)CILGgmw8oiZ%l&}gb7nF?NMtl%j<`g`+p);7? ztQ!k-u`(?g#51)Wf9e}gJC%8c%s`z&kDkypOFDeJcy|sqBq5$TxW9DDwmcq}P&q49 zKhT+mEDE)!O_w%`->o3Y`TG5V*-?=OJrJu|e4G#nc7q4nU5vpM;eutt&u>El0#H0E|P!*zohuCs26q)}USZH7C6w9QTcr?E#}>ygSvrqpGKGLQ(FeOFGpG3mT&_ck_< zeF1(JA%Yk@YDg`vKN7Kz3CO2ABNdxrRNRLe|I)PB^sleu5?XkPK4BDyQ3D#;O|}nu zBf0vpW^m8=iOeuZHw*eI8(Br7#KIk_3CbCwwzV$Q_L+I#Y~3L#kL@^Wn+9$bT(fZr z7pvCDDQnInRH_!n@Xb`x*#!qlcCN{!vwY1PWeZvYC$~c%Tew`mR8Ea;m#V7#@67~O zc&3&DMG=cL-Rx>38?|eO%;zU+Lt9>@18MJz`fE;#nChJi96Ja_DafR6&HV9=+}aO& z!Z+Vga%_80;A#L&7^)wYa*z`@o@-?o*09B!yqqe3T7$1SC=KH zq$Q>1o2kwj*yIe>7&Kd5(hC}eFBf2l8x#~M#hlhNaRo*5v6X|{IE-KXHbD?LayO_2 z9FG1Hv8bt~Ou(O8KcdW#^Au(Nt5^gLb)n1LaszQo0;V{kS%G_NHY#ReBdAgQyJ;T? zMNDVHK>1WmR2o%>d*YqmrKE>8(4?2@6;OZW}cmL=`HL672K6gK>FeaFJ&D|r$) zS8^3W1}9F;#@G-X;Vm2MO9cLO&j+e+$WA#T&m_lo)7k7TWx zBE_mn?zFWT$?EDkm@-a@`Lk?u9|YnU3JBf%r~M}mwdt; z;Zb2S#mRruuN=BmDl7Mc9;M~x=>u0ouxxw9YlA{<8?!*9gl^Jp!I&?_I#8rw+HQV7 zppd9o2UI+9bu_fq>oPH|Xa2iix%-veG$pJki46Jgkn3?+V!{s>#5FyUlBr&gGjfqc zBGajYfuL!xwn^K`;0Eueb z!4nRHFkkZmD$1}+%F(@W?6mZ*oM0gwi`?(mk&PTR)w6*Cb5~uDR|tJrLXH?2&d`cl zQ%v&l9U{(dv9RtSEc@*3C?Ma@hK%VqHdds+c2u7(v>m;Y-X4*_B2pn|emk$e*wuH> zuHonweTm81p1=cne&0G}N3;gwsia3hrgA7zn|t;IEjb92H6WnJ2H#^ zwJe6|dWEtWBcXFVfsWMB##JO=?XzWjN#Drfd~Hhl@46tZaRMj3pnCYO?^c}eUL^l^ zC5&Ua|G|7jtL*fukjmrX_@MYvw=Vyy&+V~zQ@Z)hdP__W3s#dat=j@$ z(5pp~0H%f9+S3o*R+}ZZZ;I#b3@C%X<7@!&&>gj8j#4Y`Sw?5b1h$kEngHKdq+tFj zk$1!u&XKGt9!w?GWroQT&?W(W=Z7G1(~30D5AF^lA~pHF*clxDsNHHBt)GWziN21t zK2~#4p?j6gNkSYPOQrXO3Psk+I4+SDrcc-jEwAL@R>nSJ~#12h9g!?~l#f2t6V{`k>#!Di+c{BfcnnW@lS3AC&W# zhDGT*bS}W$;cO&T8gBc8s1CzYO2FZ8RGigQS*y>6^qTE0jao8;I(VuYAC*gN2OYa2(BWU#bW1F~5X%i`o;p zbacDtiBy?zOG9RK$1KBTxQ(4+db-2>dK(}|mC{j6m{p7)I%uM<9`25N2#~F_O9K>Amz#@5OoR#-d}`bQ05rMFngvZ{;J@V0+Gq=0-((+RhmD{D6a$$5@g% z(&-ZI@krg>PAMYH&<->GTSEY|9c^#+#wWIzZYN|B_hr;K{FpSh(FV$5y&79H$-tz^ z`UDU3clk7big6i%s5z$X)|bmV$vgXa%ynCe70GxQPy-wneGl_$KJzgXaJyHHPzeT4 z<+Kso31g+ZmlVZ(iy_DC{&0D`V4Y>I(JdG+f?>Yv#b31+JRL<54Sm5TRD=7_#WeDS zC(UdS1~wD)g_p&TjUiw&IZc&?^Q<4^NK)F>!FH%*D|V`ZKCI$DDknV4re{X(Zry3v z@d?&z=>^gmC91t-kW+sdUal9X;ax_bM zeBS|K>1Z6CsZ5hg9P1y7JCSFSbVtwdGWvm<)DcDi$BkN1kwn>vY5D<#e4*215^T!A zscd<};^`vD^^_-a*_1WPvC$X|V^b&v4&Zx}!ay4wgL6ROwtsb-!5mO$!B9+!=9$Va zs`G{mXy!HWU$mP|7?qQ~!1U>CQ*ne!Etb6sHD|5M81b?~ox5lWZV&HGAy-#$FCY_y&v@Cs!-szu~5R>C-Bm7kf%c~VW*_)sE zJGV-rAXyEoe*|>s!ThzUIe12SNXp^RLNwPjnt}JUPARl3Yqsn_6f)w$JBAcKL}&bv%fT z2YDAyibf?M5mH8|awT zUaUO8A)+GSkJH)JA<_w^_Vk#Njx?Lpy|57*GC4{2z&h(&P&*KvIzQ1?F1DD$Ka##| zw%(_p){`Ys0j75EMWw!`OP`>7o+EoPN0GP@jtpyaIb{c_qa$f*ybZrZ{zfxyaP zIsNElDj3*1s;y0}{-iJ%4j999s>#e^s4OTQok&vn@qiKEX(Z?obLF=U)6hcR35i-0 z<}l^D-lWpd(rdGwwsq}|-ovWe4deq(h|S@!;i|}yA|I-mMkrjC7pU)LXsPDZglI>ie#$het+caA#W((SqK*C4ov{7*7 z<_}Nz)59$*@cGeKK-3OG>ZiBa$CguMYM3U5nFE*uY*Zqzr6JpC*MDqZNC`9D%wS@+ zAb*F;KC*2l(&PEKv(#HBe-@kM3=Cs!ttzWFdFi)&NC_DdLaZ&a?>k<6k4bDqUH8aC z3k12Rs+<`MI`|h}Y3I~A^hQ9ENpFAhdVLwFE^+Qi)@i)gi4!Rj_iwx)TzT+q{GNd_ zSad=&I*5(P&?<*1vC+Qz?8t3ok#j{U(ZE$7lv*N z{lNpCB_$Kp#_@Kzo(iTjCM9cGocj$g{<9k_k{2F9TIdvZdXe)X5N#92(Oqh5d&)R- zF?Au_d-k4T%9EBQijEbRJRNRHZ#(`xS?7j-YI|$N{2`=c;cdnPAUcK`^R|-RLi@P| zWT?LrKe$^qRSyq;!ss0qCKxa z^a=|E1qKJQ18caFJO~=p!e4l9Wt8<1ssFeGTLG2zC13T zb*eG*sm3&UC5l7DNL2=;FnK82xclLgJGY!%;omgJ55JX;8ld3~+NtAzQNBkl%*uuI zG+&^%SY@t_rfAM9CO+@S>h6cjZ_evf0txca$VS-MF(lHrOp4DSXfcOgGLE#kbjv&* z*bkq={o#74&O$RzFrnG`IQ9lB_7k{jRm%60wpGjCqo@H0qVo+8-!)XSocTxo|%bdfp7fXBClmonkfV zJFb_>#|1(?S5_r$B;AcyoWd`t?vUNxsO(4LmNx}sGZs=M4Sp<4trKMsJc6+jaS1n0 z7QWsikT&VCFrhy`dI9K%@p_&ftsm*G7=`9LQ137-#$xPMNO}FE^e@HlcoLKk`Zc}6 z?LIt>JMS||KziIG9y!S+5-<jNtkJngAMiS49|*%p;3;OYTtOg8!wYyR7X#`cnDQ~@EoW6}VWX)rlT`Q7cZD)p zUIrf%1CSJ)Gyw^2Lo8qPm*lHc?_rMHDJydSi{wV=uEXW{2X3DbFwcl#O;=hbGXsZ0tZtl_@q{!=_aQesU31Yq&C@Do$uZN1 z#9^iN#?9cuRtKvKee_V3X~F^!EoP6o>g%eUZENCG551z9bXHy?%vCm0XYE8Iy#D%* zhwe~=s`M<4{hPVAF3D}gnM(Sv{i{Er(6zck>3(+C49n@HPAHu>se>4iBU&-*j=67@ zDM#L)4H#l`pY>Sn-F>n5B$e5<%Li7xF38;}ock8EBVj9xyFi_$%~chw(5_+54G|Na zU|m<`5B<#3e+BvV73CdIU*47o=xYPy#i_XL#K#^g2S}91~_Ekhn=zJqx zbJB0a@ZKkc=IBLwZ0{0Ui$W_)giA=1n;@}QOlC^25xR@HWblD`MItr-2HA3uz(p@r z*@yW`vg0xivh{E(&}-4A~<`@J(a4Xf<%zs8%++=&@C&E@5=9mGSD(A|IyQPH!R05S5sLJ4%o;Cq?BT zV)s&4%upo6AhHnA{_K{k4(~p`2k~WbNHbpxzW+P03d{sJ)L^5N&IP{6sW9jCNgT-( zS`6su799~lrYz_B#Nc3JY)t3dT;}Z$?gXnyO8XYIp}K5q1y2{x3>RJl!aeW*4MXUM zfBF2*e0S#ZUD)&>cL6gbOj4=;to6Uq|3p>BZPmrvmqCMP-PLq{L_|Ca%PMOGU;3ov+lZiWr;@RdQy#q?uCT4kRGyC@vJ*M@C9uzaPW{By7YA%O3`c9}awLSQ|N3VBL! zDBkOoY^0DCqH2F!j3l{5DO?yS`$s&tQF(G9RoNCiN9yLyy7&#RB0+!?C_{1|WItWP z5zMoL*9_=2%~wY?doY-2&hD0{lFY~d*Nvn;=w0s_p<2W%IVxXVZoVN$KX0T|&trfL zQRF$~)e-*DwqV!03t9G(ChXK9^tos6Mh$U9NwM?Lkca>0tOLBPr)qVMF~b32eY!U_ zt6WN0-vMtzHh|nkP5wDqv&}IIh9;UaC2l?yAv!wo{4*IDYaeu~PBn-mkt*OEK172G zlBd4Ll1`{(F-?%0J4!U;6{3 z<@|9h<@A7KjYaweEV-lZO49od@Bgw%gGyq(_Uw^%!veX{Va+$rlh6qh)jZU&EOIM1 z%ZT!2RIB(%P2_B`WY$epV{b6)zUd~ycc1uWf~?+JIQb|2k;P8VUdATk3f)%J1WVe# zL<}6#?WkNDZg*-BJziok<_X!)Q*zXD*xNW7KAsNpK{3bX4Y_)H9l zn1$^ja5dxS+73fz!=-!nx?$s*<@cQi+lKKdg%V8KVMs2V1m=;FxI##1pmf2 zKrj~gr3E*w^}uhze;h~Pm`#8o$S0xSBO)v=d4uO2`&d?b4l#dAyLB}5w{{yiJqNyd zhO+-12zn8LGP~#pZzSnL$nT=0;VQ#xG5Q&#B}q$e^8!Vz1tjCPq`2?OYSl2+BDQf!1+9U`1FFfU#Rh1zI z3esCM{)H_$N8fz01na{ftFs&H8b2Qw%$#y0PM2?ZR9hkHm3$g^-WZZjdo8zzHWT~b za@OqhHRGByRNbjqW*CK^5rwz!A7c0h#JjFluG2ObPdc1J*_<-g&Jgq^jI~Apn&? z6EErywd=!@rP6R($;+9AU}U<2+vPz9n|w{~@pT_L1{fq+U3;F5&b)yA54Y$3bH8<|0Yz9pJN#34A1gQfae3A=k!;t;q z^lLH+vO6+R>o7`}U1t5h{;=jgX64_PlCXF8lb}uU2ZPmF2 z5eHKr9{@af?ywedF~?~6X%tCme>oDZsQ&GUzRSGztJm%O9HNW+V{l#%Ca(-dt|{>s z+T|qc?qU9EnDAbEHz6@5hX{a-GL`6|5_BJ3#?v`FKbWJhOkJH1&IF0BcHWZc@zdwL zTJ`c3w7v9#!0{3G9%$s#1U>e7@0R;8-0dFA$#%WER%t9(-sH722>s*s$1~tul!fDB z`7F=3P;S*g>BPWQW$ZyoT>}ma>|&|sIr7seS12o-|4W1L9)4pKKhO6H`_1SOoZ%Dt zV>D;a_XzS0)Yk8P0PCK5zowJ0hX^hA+Y0e*MPc*@=lqsg&RdV`-uDo^z?<#U;kP$j z&rACoODK2!kKIYe&Roxn+G{Xf(Hp#r)+_GE$61lys_yj9p+@meTaVhm?|n4LAMy(+ z-;-}$&&Nnl^1GZG;rFcXkBTonCz`gO-N^5qx}KZ+pMD?358JCZ>WRLtZ!X{q+nlf- zS^}_Q-=AmSU*-iM5DM`BACU1&efVt%09OM4ng5%C@jr1H|Eu)>4b1pY!GBtzKlShU w-=+TtKI4C14)I@fj{loC@n7ZtbpjpW|4E;amjVU*&mQn^Z~C3_jsCOxA4mtm=Kufz literal 0 HcmV?d00001 diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/mdcomplete/whitebox-mdcomplete.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/mdcomplete/whitebox-mdcomplete.rar new file mode 100644 index 0000000000000000000000000000000000000000..7ae99532ef5fdce740d4cf83e16f17c14c72106a GIT binary patch literal 21229 zcmV)EK)}CHO9KQ7000O80Azp=RR910000000000000{sD08K?yK`lv6Mlb%#002-+ z0|W{H00;;GV}KAa=iOp2Y6un~bZkJXLdn-Rq5eFiHg!`$4I2N% zbZ#u)Z= z1PTBE2nYaVfDl#4a-iOhOaK7RQvd)C0001OWMgk_aBO9CWiD!Aa;&-ojBZ`C@7rs& zZELk{d$n!bw%xtj?p|%%HlDU^<7wNr?z?lpoU^~3lbv(VJu|7KGUl%;l`&>A>t7iP z(x6~4ARtg6ASQp1R6+jJ0}TQOA}gvQNGB;L#_%-`0;2FQ6bi)nAJnwTP)6e)%=8~a z`^WwVDk~@_DJH6{LN6plwRE(%5ZPdl3@zyt6< zDggnRasKzB!TvF0ds~M8NzDEi0_tCcv#Z^IL&5$h%EkFVfg1m1myrJ*bTM`QH=Nu1 z-*K$}75>kHt^I$lM#JUbqlo{TC}Vp&J5ys9d#C>tPx@ctY5uq3-7PF#OpWY4{+mSX z|KAeXn*8(5!N%0Zl;MAVJpYk1DhE5o4-o_;gbD;i>i;;WtcakUoxO{pi>ZmMuo%6u zjiIx1mnN)_>Z9-X*By6QW~K-|5z=pX_TLhJV5xuoK!*E81w9+gL74^2B25JXy#dEM z1d(xC^;RoZm&RIa?QWIR$!=~7H|rH{_*KmdZrUBqn~j;a*~M<>%c-`P&;HW@j%UZ8 z(3j+dGhE*z*Pq?5dkix^7`;lKlz+NBR7YAV3_!b4d);p{V!u_cS6qDMSiv^ zNx4uRf>SLN@qgP2MEzEn9wSuB=HwbHfv=@cTfNLDmf1fq3AO{i2kaR8E&$bCnq zyl7mZwM+xIu;|p@&L*5l1FAu+Zt2ua4*vuAi$xg8QyXN06sZ?=zHEY4*GzpJ&$43h z*tEurl_m}2F|E{Mrgo5DGf!G0HH3Tmyg?$-8a;J|N@xYrq@GqmU%Kq~vvs)_5b3Y! zRfDRbW=*$RS=hjR%vrsXAQ0`ZYJ(P&pEDHMf$Z|Amh7^nQxy3*o8`*EWgs+Flq?0VLS5Im#ZG(o9Nw@5Hgb$Of=SIYP^^rT`sQ8D$}m|-NM zCJP|@`_fSn-m05>V(+7F5h^}&t7x@_{G<+k9EHt5EcsrFL5e`DZG?w@lfN@{Jgf2( z@*dPvhOZd6nYT;|t(Jt`1&O4e`csA)DY`6mbRcz{-GJb;nP`(hjzoH~izn1sl?!va z#M*KOiBx)g^_boO`GA9R|6+p;btg>_bU+|w2^FM##} za!e-ff-s+%Rg@qg=?n##q-9D%bZLEqwh^*`w62CE0SiX^)MK@!pLC3ZBNWB4d(Tl> z5ta}qeBDfb&%vWC)qE_?GIMvDEvI{OYr4gCQKZ>){oDzV2~@FR3Y%(k*4fl|=xMR6 z$&CQ*T*+ZNIOyadDS^}ANe9{awwZ~ z(d5Lmm2u;0%0?8)RFqDsl4SQLs?`-(s$AdIxZyYs>~f1I$nw2=N*GdzAb1}KG8q@d zE)&G2#d2t6*ibIIV|a%Pxu8Q_0~Jru#A@fAB**it_K%1%9FT7x-*>E?EaIr}J*->~ zPw=YRTlYC*yo>qxA9y?I#Erzq(ja>JU@Bp8@*Bj(U8dmijhUV*F5^o zq}>TZ6HG)Lss)CsD6t8xrPK8uP#bJUiTER#KHBIc=TLE@uFW5^9-&=VcqgGIZX;bSiLx#ML<6yKXb~e9uCdXq)4HDQwM^(gAiO2ImD8y>jCW@vvxjOu<7qjq<9lhuam{ zck3Z3^+Cv1Mn!EW(F=l~c(zW+>uzqKRp$G`T`gVSF^0G`H7bUY2c(Z@@k58iGtd>k zt_F2QGVCLN#TqFjx`P!>)#?05q`xE+YfNr|K;l7* z4ZT4)HCu3vtRr~?AGQFole4k6<71u3U(#1ACr>>juAR*-L7r&NL|(xzc>^qJB(&Mm z&RSTQdEQ|^2L9G18oBj@88swwCGR5Hcb}YZfee3;#N$_ZSn}0YEkRslKJ6UpAY>b< z6~=mUk6yOw%SlF}Pdi>8-ZrW9%n85I+L6MOnSu;&o^&p=o4*1?Fh6tUZ|2?>&beL>0bAEt6<#L^eP^!igZ;KWYDw9?z>>$loAd$ndac7R5@ zG_mzrQaTwug z&u&^FZ!>naEvY_b=dv3qXzkco(P;<8r0tsQMWw~NW)vLIFH*)}jq6f1JJ$sA!KCPD zVL=wqH6DN%l+w8y(5~B<^0<3KE!B$Di}Yxf<;uJOyjV7dO!<4{qD{q{Jv)ZE|Cnl( zGR3`b{B(-zRK95mEKuZ4N4BHP6 z(3d3MI<^|SBKW7$t=8yHCy8jgWTc2nuFjd<>sLCRuK5Yzym{V%v0XM{TSjpn9sab% zmLNkYFUo}EXpq()%?wBZs zHA(C7V@->CclTYS-qNoWvlRTMoOV&X#^MN`m&*PInF?q+fz*7w?>uDUG?xKrAUl*? zV?{IuO}xL(uc`REQ?5GsU%8g1EBGmyo=b*lb0X;L?SFwOOxFk)Svl2OeP3a+#?D3$ zBa%bN#u;<4c$X|4{7}n{6)|F*Qe;?_JD>^^ex&&}2Eg1nv>6Y1k!<0zREuHW?4eU5 zI!weDojUur&csmurxPiG;WFjMuGP_Q$kOjJy9csDlUtVfTg}ukZ5AG0ZEe ztUMQl1dNctX@PjD3O{=6gp_k-^ zgv!QA=2`)Xdtq`9nE(z79nFh)&87mL-sY@7~p4S)3ZQF?!Se0;UtQu%BxqAaW|;c#?go0GZogrtt@=&^Xj{ytaRc|+Uz z4Hf~#QQS>O^fd(@^#~uebygQ`a;11#IAXE@dGgGG1&J^j=JWNAJ0FmpOub>oZtIm6 zXZ(pTEVMBVkZ5Jc8D#w@5sxb4*b~PZZ%zY${Ply@l0WX$;|IJ4a^nqGm|aj56V0ZL z)Ruh3LixsaA%gUs$F7FH&6#FRIWBC7cRIP((8^*@oPdL9g7K^;EN9Ik8xJeRqKNC* z@KK6qDPwDMRrdvN32Rt}cy7&g-2!8UGqav7^~KpsXHvW?T_}2FUB7ZjW566gBOVV zHAL()0pb!u)EW7c8v#>`@93+ClEPAYtHO-6GgOa+q%#fj+8W&lV3a?R&T4TmGEFVxx4@_o8w=O2=Fv0OM;g$iwfX@GEn{+{I5BsP! zd3Jy>&o`v&`kc8rR&m0T#zLIosY#urW*A%bm{Zi7S2T{eFJ9D;3c9|HW(xA{JHEkW z4OOy@QM!aXQynn=V%y-JZ@W{3|WUISyl_pN<;4#1A+k^BIe==aR=d)WX!7CYrq? zX7>R*ET+)P$QAKii%7w&%TFZQc8sM%*N+~bHnef6DSPw;TUzF_-#pQ?KG-TTw3*hi zcB!=;*RkH&!zX;iNT!z|du|V%%MK`aF>GgMY}T>i3aL)Nx2kD9tfFx0;xp$9ImhQZ zSE_M0TQ;R=h;+yq||09iBszhVl7%!H?ZYMvOFKd7rw+W7 z0Ap7U5IX7IkBUxUHO@nA*YG>8U0+$rA5C}v?FeW{q5H+Vk98dK zb61SpHdC7VVa{bAvrRW%s{gynH?!upj6wnd$)yGXk^KLm@`eB9{+q~GIZXb}l}Yes z0eEu${uPdcOqvb`fhN*F@cVZkIWo%+uqLN;orL%?nKS^Xpdb>Vs->@W<@wX;@)fEd6Xdg!CRFeToJd{`tiBMg>G1L)B+ zRNfrBE!t1Gb7qSpxx@7ntptuD@}=R|B&x|>e^@xBtm7-ND7&OrOt9+WxTIgDV*exM zWn`zHjG?#ogw0N!VhI^00K8FIr3A889^HG4+VBhtD$cCw=i*^HWn;X>V$LAkTTjL@ zU>_bzf$dFa^J;YWrh;tUR78&&W$d&{aZyP-QI+-580QTlBdsm~k;G!D9_i$8Q$Nep zp)+f)UAG>!vJt6f$KYWOEQ{{#NMXa zJiBmuv4R!nxU8oOPzzbIXust*JJdtB!?hVpN=e-x5?VACDk>Was=rNdb?H)<(xmU; zho?y>g_Y`YT!Z*a9h2eN5?AixFucb+SAe;iX{C(&x+R;n$G} zHZtU))kR&odlm21Dx}!>Y8zmom0}Be>V4xUzj@=Ed|Y(7Z4M(Xc&%ztUNW@Vl{=hz9EdHg zostc_ZhcalS0Zm+a4Ct`ut|C`Tu*K6sNj{Dg1Gi?ipaZ@WO0{DXy5O2He{^n*=vHd zfSNVRK1QnOp*u4HF@xe1rns1?%l+RL@$?fA> zNt~!ccGcE>0XxpZ(4|Hta|&!3+o>8`%6PCsSuTnz!Dqf4HHcr2b`bCUbpTweJH)#G z-kdiTZc-jOfYY5f4khjY%ZG+}Dgb+45@|>b{!LcpBU5IWw4m%;= zFsHmWb9V$EIZEhO<>a|Y1%7w;^mAyVR}d&uc~FhD8dXG|3BN|XQdc*oZBy_g-DF`r zFVtp8QIIj$e#|H@LR4b%jN^s`kIf|026J+JTP>~ee1#N+oh*G|GlehhM1Dziyt!S+ zd{q4Ktzh#N8~7)th@Qt~7kc5$xs)CmllQ9>D8c zbY{`{TmLzG@JdF@>01bqqM`3Bf4RfonIDj*tsoF623-pJ8f>R1$`H6pv2KgKNPES3 zGa^@xa!SPVIC>HSI}jICWCcm&!4yP`R=2@v?5#~4Z1Cb4YBe^IJbxIz|C~C2iefj2 zCnP5ObknT$g0_wH`oh#fF6|RZQf1kKB35oRiq8kC64D3L_<4ihOAXs=adrxrY72Au zwIDv9FdL2f0piCvzBP)K3550Z>ID8;Gt1gBAN;{%Juu@k88!47`>TBr&b(S33M6mE zeWC9b#}I90q_CKwbt=jln${PzH#Xp~h`rv2%m5nh{L>Ev5bn!r1w$mnjb%ezsg`(& z@bTv#T_tp|<;U>Xm~HiDw)+U7PH$KKH1#$7LYmA~`Dr?wEfE6XPL>iWD6tNnC#R2{ zm1$20!)jTj8!q5zXZr?_!O$@v1He*!N4sSi-zS^13{D|CV*^7H>7>)W<&`s;_GLRc zjo0buO~F#LUKyujrzii$q-Dzis>SC_c&wukhZR1Dk)`3ve$Z(yB#zd{8$5>DjeR=h z0_8dHt)Z^NP?vmb(Mrv>s^?V)n_5L|F%+v9C)=iibTuj*8J03;=wQGre%RYtN@=-q zV^bgtSD}g4sHE5tf>-KmWvEd%q$FIZSSn6707#|do@8uTx;cT#-jy#@;ndD!}SI!`>wE!R$M@FYvt zQ18;{ydwSdd#Sw5TQFqix~$R6F5HIXUv06K;}Fw!X>2%_)aWx)*6wfuQa?J|m8Q!% zmeXM_clVhXda+9yt|Vt*Rhrzk-`q!->`Q zp~bnztXW|Fh#J{&_G-0_E{Qx|DVNh>WQ>i=T0TkK%2%+Y-1JB7wis77+Y0V4HacQG zJ3F>(q45+@=1!!h#FPODaCU6oXnOX|Od-Ki?8aDc62em3pkK0i{$?{pWWkS(h#r0> zchk=4w_|>)DjTCnCv5M`4HiiDHn30J$gkzt|74l;%n2uBV+E_bz-jYGAbM-~b6)v%&`Fa3O(fZP-m#K*yg*UzQj z?sYNSeQE?oGOrLnVRfRUE`GzyNW~a%zu`;D(j&?zyuG!Nl!pS7WJ2J1=;V)>5i8FO zdKH{A(%Z839=adL*X3H3DJ{W^6z*+8^8CB7w}r}x%^I5bk1Xl*Hv-OyVTjM zfh8ZPCf_;iV`l^}qQXp&`RslEyq6qTKsh#FDcYH5n%9<+(oC52ITu~!agq?9J;e-9 z+40D9-Z4oru(VIr!7D$|eZe<2#U)qX3|;4%$^s0Oh4-)oliHo(6*#i_d`xL>lFY)( zVD2&H^a*Xb$ft<`$C_|1ISKU2icvAZu)pNuv%MF0wDa~fex)LN;zi+&s4&PId!6m@ zJU0`l{*s9fX-k`%JT7batt+`+o`AJ@2eLqEhe2@oW(>9GIPaITm^*Cb1ChGt99vN- zp&PYUNHn_5Z)3jx1K05iW zjCGU_$a9G~2G$#}Z5mwr=V=6Rv~HcQ&|QxSinN!WDENK7#Zp$ruaqe<1$_7Qz&F`=-OZJYk7^e)Y1p@_6FaIYE$w^=UH44=Tu$Oc%|kh5Y;w5q&cxz z!D&`>X+A$&+SK^^=|wQ48RK;$s-rq=n;f&QEZ_Z|KzZ#r*AN!`_R}T-sU|UGl?aoBSQ-zkwz$6%OS?OEJ1Eq(X`HH4PDNPbU=ZWb zS`C8^_CKavvkiE_@hpar%s7nhbzy&u%6$7B#E95vhq!9cjS$6*$uumydN_9;fR*LU|Xhp=QUcC zL^qZ(dyG+|aKUixfP!*q=k3o_n;*w5(R&$iYyY^?p)w)W)w#D2%ABiDKU>VhtvS2d z&2?sOUAgv8@%&lMFZN&FCfhzVmNTFB@N(=RD~3d3M3Daac`bq9kVOKVKru$`Xp^wI ztf26jqv_X#XQb}7N*uaYJ3B1lMxhcK2wU)ak-5S*4v?-d4S7k$Z#)6$@{F;3B8OQ1tnV4*n%EZ=QwB4+>dc8_KYGOeQptn zqpEfIL$Qi!g{z*l))!LEq;W}bP1_@gycnss)jBfDM`u=a56KL9LOG+iB2&hSeRGJK zh19S9p#slo)pz5GQpwJ5FkNqz2ahTUwc{7BG>x5pNpw=n9+9t_k)pk`%lf0&nkr+? zTpu5retught)s7w7?pp+R70HVgpy*9^HkzRPZ@4fMIm`IJzEsw6M0vq_wg?L*zJUz zzX#Xu)oHO+Pc?^8oRHjISjU6z!g)mozN1Kn;{3@Td$?x4U2?t;dHs)g{jYfacX_uJ zwP(2dKjmjFaE)Zr60!;R&DJT^3iODlrx{144dOCc>Q_;G1W%W>@yY*!VT^U&L za$%V5rSJB)q`>FH`}Aba+S0GDy8G$QYiEJ&W6xaQNB>kk5C_yR)L|_kX8)(5%YGq| z4{dN<*i8iZ$D0Wce~A1NG4_@6t*GQT8P)5Ap%1uza(g$%@XBorW6mH4Nz)FGp%3PEVjK$*FMa^AyWgKi z>gjS1v7tto4DsxyKvz)Iw<5a^uYQbJ)w%`Z-GdmBTvI@-_4#X&X}i(-Wqc{NBg8{@Wp*orw}JOmZ99=X$aDl|}p9Ihm~Vj`$M0 zkl>jM&Bo6-qv#WD83~b%TQy64RuyfX;Q_`x6KtT)L8i_9@d{RiQP=$;dU7Tc8L@8x zdU(U7NXN`YOFk*Y6Pko7q$WF82EB1Gi&Js7(L`%rS&_tBi~=gT`Wz88YWYOO^#^zu z!GX(OA<5yH<+3^dZzBsG_hH`)l+g}!T8CimszGWtK`Ji;j;?*PpOJ9JrlB=CkB^b9 zY$Rf^#`B#&WuZ!W8QgJ{z7w=)?UO#>am5-mFq7KJxw0Y=8m$V3>cqTRytdHY9*TBj z#lxyB`~?c*+2;FQMEp%H-6gkveE+$ifC;5zrrrM2(neyfON8-!_i{AEaH!g}wf>HC_p4$^^(kc!#ZJDiXQ3~&@ z;W6io-L6L3mQY6UnK;NW$K_T}_YzKl7*CeExPV|KXHza{x&So=27aj38y(C$23y*dpuqr+V zm%~b8zbvp=GhcqJvg$2ql>Qd{d8C5t@dRJQGt5*}Y`|+!MQ8a&_(Nh~<2SN@7EIf|hUq4qgc*MyCUT;3@}hT0RYRyQFv75ymZ3)We)s7ux7?g25a5Qe{r9jWa<}%E z4qsRuWv58dUK~t|zOB95Ed}^SO@p)JS^5g_IF1dSY$OM`kVmtEeJt$Om!wXAo7whL z<;opis|;rvfvXqk-4!B=yAXmR1F8D)N^px(bs(fwGK$-}r7V>8i?g9j%>>JTSRYMC zJ;O1u`v?&(nzq&MFrqtTKK7jLOs7i^ksE zUUo<9HC5Hk|I6N&V!P(>jh@vwF=(pI5-c*veg9}+HP9``A#dkiZGKbk6lTTR2s3Yx zShmq3R#fYScVvnjIBX6^=X15=Owqp@BDxx53!L*2vk|X-b_XCzI!WX|C$>bKmuM6% zp{|nW-rg%1-yS0?IS{}ar6TjA_569dpEa5h%oG);ZK#vFwF-U#hOxsbul=at4oBx4 zw7@Ibc35#FPq&UPk}-^xxa@3jrjzFEmgi`eM(h7PkDTaeN`mDJ-|CvwRY~wA+kP z=$Q5MJl0&ocSkTXyuZ-|Bq#`oISEVJ#Wg5OBcjC9Uq@(k;!G;L<#0@Pw2GTDTB5DV9MYan5}G~2=hOTV^Mt}0yJPXoh}glo z80^dGbe>Erqz{YFx;y+FP(@#APj!y#kulSFGRXDz09XHI6T(0v-CZ@vR6EUs9q@c7 zTM|#ApZ9zOvVB=Us%?r>{$e93yE?H*tJ|iq^5HV}!C#ZWj@J{+)+-8hs1X}CrQPul zcKRA1105LkfN1&c!8_8G;u6ebER(w(Gi>N_4n~eh5``zwGEh{S@&^9v8qgj(ORisW zW<{O^F|FpXB-+EqHWTv}*xF+3qtbQFs}0TAF}>^tSW~=3_2Mi8lep3_tnhy^wC00D zZHhvKU|jJe5}WGboP_6_PJcE@DrfMKo+cF8winA%NuoaYxU1#I|JAv$zw*8A_MYZD z{+{7`*6F&rKRy0&kwDKu%-IT7_)->7s`?#m#b1)KtvWRV@6$i^m6-g(_tA~>niOzv zC$k$EU=Gh~Zm`}f3hJL{=BvdvQ+dQv@mgi|HQRd(_Yn{4e=)4(qX+*P0qcJ@?B%o7 zn+v!(w)1eDj!ED6z)0q3x~6-{jEuFClu4q?E3iNw9`SKoZW>9*U! zt@tj1?wg?R+#7ad>ynZEM(958-)^6)5X19W>)pnEfyC@S7Q>we-1u@l?Lb;J`?KE2 zlV`o;XM8X~d@c3%0B)}BTy`MoKf(eCv0vmtzYoPQ{i=%enQykq$8Uu}zm0d;Kn0j? zltI7G`)7byD${U#qM!mC4r54I#Gy&)WqI&>tVKXF^zlt+dPjhx_wY03ME-ZR*B^VM zGzUwHaXARo%iAD&7FgRGzXw+EKrvNm2p^*iCoMSp0}q2Y^Z$J3IyP#?sD>XEA5X#m0U-hpp9U+6d7@#ur9RG$td7U$=ANw(uhqAI64$(js&l zch7E3=7i>6mz=242?ZwH7z*Q@3Z*ucP$Nsceu@&JlvEbFlk-yTnMOJVlf;fO_cya# zh9UEAqy#i|>g?UR4wpt4lj9Yx$=aum^jOaPYX-at1h!m>!7l zQC0GJ;K@U|>FKqj;?Yg157)GN*^|rI9xh!h9^uy;sWDq<>q(n(2w}ElfQM~WEuO|x z1Nup<52WH$CbUwkNZyo4R$EpNPU9b)(6PsJOS)3{a1cvV)JGwNI|@rqIPt2YNo`kh?>h8=v*J8 zVAp|?b!{hU$zAr5tA%{XT77NGx7W|3?7N;lt|^{dHCul%h8_{(bPC&Q z#$I{efyxNeho1<~r58avdRR3-EfwE1YP9KBLLQ3sf~$|4-(fF2Dd+t#fj zO$k7GXRGhtU>BoiOi>_8d%HghM{Ox;RfX2^fr@%%+%>ex(}W|ZK-+!~KjK)H=<^9N zx8Nl@UxsXm*iaBt0E3Stg-_V`vy*LmazpF3Ju#XILos=g<8L%YRS_Rm8J+4ua{KhO zt8#X8SvR~>jB&+mRe5D@?P8UL>2Y;!rgw%?TXbeCWetXb-0cv6b+NWpr|vW+$;#G_ zd&Rm~Dar6sOZ_KZ>qUH5XKc#WpJMA|naBuF5~^AU^Ju1k1@IDh*O%tXGgd6+=HjqQ z%uQ;VDxQTti!;|HFY*hwm0S&ln9)r%)knjlD7hAj~Z z#iEil02-#0bHDPc!R}CMi70slmWvmKMibT)q1+|%3(42sh_}kSwx0q`60Fesbbfcj zrQ9Ti>B56v;Hq1vOm6bhphn^}b`v=!j$yXX_kPIAgf`##)JITzh*n)C9*o#HrCW&S z9Dzo;Qu@sPo_fydXaI?!{axkL>kqh3-=@Tc%tur5BX=Todtl_9WU31z)5G9?=>jx) zv|XrB1K&7LZF`GP9oBMH>}2x^QYD})c|8j`i|`yfFkmcL)#z=C3}xO1{j$%(TWMqABP3~`t9LvospXxyA!Fl+X|K`jQ5FT_B+ z9cZ42MNS>1^yBMsQPURvDG>Lo2Lr&#ulhGNuf;gUSM49tOPKv&Dqpmx^wIs*Z(4`V z^|%I_Dh=y4yX6_fwm*#C;35ewEIQ_V*T!lQgs6d8BOQ38hd5?%+yaFg)hF`0E`370{Zusi zz^eDnIPuFG&7tUqdDOed>L{lIL2)UnVV zJH4Jp^`#?nP%@b}*DKYWykB=lwl#6#0BjWwXMH5!tM9h`>GFk_Jy26@m6x?2MY*`X zO}C#5wmrQ?pOD%2nu;g3@z1FQ&7f%pU&l`0a25D_To$zz@TEGdgNn%HL>Nj)_)CwF z*sEs@&@;dl$CTp_+vP*hyMJ&p&;}~c?8_@^H;s}QXEFJ#7&V4YK-?`P`}pG88AkJ7 zpP{uqfsW`j{E4$v2t6 z=m@XbKN7tEyLP$rzRPZ2xXvPe1kqZ`+SWzZdpQy09mr+gaV37Y^JIv=Vaff;8}JH8 z^orN#5y09dqR`XZ`;GF$H=Vgw;cWs4qi^`qBLuH+`r@CR{~-%;(ux(nO~kjo^ox)f zhI|8Wbmdsk?$_w`@%W1K1L(^yk}DH}t2yE}LN7jGD@Na^1i=*rrA{B!Oxow5i2?au zm*(KR)R1jvo2IIjMPM&#J`9Jo)p(h&g7W?jjyE84 zOIoPi)8G>#cRYQFmwO?J3DUGoQSd<~1qX84@p@=1nAj2?FZDzz9ky_iIWM{SQ?s35 zYT@x$h)S&Is`=Jmu0AU-GZc1-{-3@u>I8Vg{P$wu+3R5KR1Ui=_VZ=#PbSl`#-ipU zj=pYLlv(&3=INAK#1mL_tp^;V)vxeQNMU1?oDTEv@Opa?uoxZx$y_EMaXZ?7-)0wf&2#aEm!91+p ztDFA7Wlr}WBXgZhBwT80FF$nTji;l_DRF~*UytIHgs>x_X>CM&ssOS8>u~a^G|UYj zDj4lvz>47(XB+Uu+Nb}LFcx9b6d|h4$Ke11IN^I~#OpO7n&bHAdjidTuzIE*yL`ME zaaEf&H{f-WMSpwN!=c*iUj_bMv{FWDg1aDrfXq;UfGGbTi&hn7xqo0&6J=9lS0_ssPhopI7gGK++c@FK-r%mgCXjOrT{>hAzkoVVbM*VQ5!Y1 zjkL%C{)ia(mJ(aIQifmc=(LYTewH4`tf@R5&c6M1ofsW(w~07*n|EL^+#0T zF=$$#KYZYg5fXt8f&qnJ(att#S^#0{E*UST2(+HcjTA`ZO~vXPAHqD5txr7~8cKe`@t;mm!mm?43)URIfHiAbTGd(kj`WD@IB|H`wa@077Tjh`ahQ%}+%b**Nm|^c`C2|M&f~W9;>!m^ zvC}mgu$d#~s`#o!f%*dA8aI@^wAuZs3-y4R8c0V8hn3XS{h^BX@vw3{{6=W3x=3wG z^sI+(hQU6g_mqV;5mX(z3Bpie3CoT=rU+@USW?c4C?s9$yjJSW5NiC?ZPiUuLXAsO zT>^zyw9GVRp!?s;?Gt85!>Dv6 zyyR1sqn2cf0dLFocPKnl(YP0mA#9b**!xiVZr7_d5v|KQ_;ayEu!^>p@hPcs@urQv z3n|7M4hE@{rBTHA`N!W=eP`?F8KP+pqwR=|#jCx?`V?rpX{z9M z)}ia|SJReA&@?@D_0^+vKk;g^;!fQ}@VVS807<5K!4U(|Zmxdcey5SeOpPov(r6nE zFKI0*{HSaz!$TqR*hI)|Frhf}oRjcV%YT2Th6WW#Mv{|d$ceBGiWo1i#w}SES1IfxWxXjBs<*mi3&^)CZLP|wUjQ@; z%{aMk&tFtIwcoeKzeDUyGuHxMBwUs=Xc+C?%dxwGv~}R^L(H4*Eut1o|%t1y~7Nx zQuKU~y)I>*=CZt}W2E++IX5G_)I=es^YLo79n~NdnmFivswtTASbg>wRae<(j&427 z>r0SQxxx&f5*Or6>0ZvhWEN2}E2U*pwdrDgM4Wx24IFfWWvo;C+_GjTVT6n( zy){ieG6((aWOKm6&|?N!Gd2E%NuJ)6h!RZ&dul0pDfZri{X|So- zd%jX}0$0O7KZZnQJH8eCqYbVUD!_9Jm4@7!si!UEKgl(pp&QzRGfWD))0sm1)hz3p zn%=fLM&y3zX3cgIs!JmpDdYnTUOs5VQzsR_#Rcc6h&C(lS2CYQ+c@4}RueuAlFj%bI{jT*GBOLjUx zb06kCd-Ke-;>ioxKSftZZ(Ay`80WU%RNN9 z+Sr`;pD&6Gouo?-emWVrYT8T&nuww(`>}bSjIh?8%8!W)F|PBU%NlGo>ra;*rX;~B z8)9xV0J}_u8lUL(5S*0fB<}@|1ox2dgojh%@o~W#mBBT5rARw)7M_Oa)|rPGV^PPCfZTK zT+%xRw(%+FhuSt1?{bJh>ORkR(qIi{y2r!&2{(sTL}x&YaTVn|SE%wbX26cc^9WP6 z{%T|O;IteKzfijvdn`|Jle`umu+nASYsdlmwL$DtVPy_+kGB0-JCX#}Ni|_0a^e*)lPl6$y<58puvv}1kT`FUiY=Kt=ikaB-5UwcP9DKgX<*c< z7Rwt_#NJ~^YSXlOp1z`>zq{qeg!fq#bCGTy|Dv%y{L6%^(h*W8j_MOe0Z+|y>aNe? zVmr@{sQM6hn!fH1ql0=79WUy$Lw3;+bN}P~% z;WgZqzL|S{z>f}2;?EwW6BmuyHNfpQIMUh+SyEY$_$Q30#St662U)5ljU5)Q&2=7q z_Ry*f>4~J`LWz}L<%H#DY!)1lGoc=TPimSNttcT=*yXQviMw2saG9elxV}n+=Z8c4 z^avwUw3m_dj;gOLUWPVpMgl+8T2u{SfjYLD+jtx>i+Etqpn+qu96gsk0g>JII+FUx zzoadC=s$-1!S$V5n6=)6%b=N{#s3s&`9icN-a}pcZ3ym8rafYV{*EqNs{h0YCss^U zoD(@WW4?B3PLE917rH8&^AB&jCc|9oz~LJr7HtOVgY-*<_JRTTRx0>qir7HSm#0>% zqerHg@xj)wnxk(dVj{hs&~16DE#*strbFB!FkuPpkG-z(Pl>0Oa>N8V}<8C6$ znAsqQYxY5|KZPzUC*u{cd2!C#aVV2GZ6tWJzw*EN*`$8JGMB+EnW%AY;z&DUZD}>y zb)9M#N^ptrUs79<&)u$hXj5c?%=vzXk)X8w2?cBtKcg~Q(Pap^YtrAp(K}ri+^v{i zuz)fINHW7mEKLVjMSPBff~l(8*NmAaL_$61m+_0sJ!W+t(M7j^!S*IY4q*mLYiZ-6 zo;PzXZLRx%OXHBZc=Ap~W&-5-U{w$rd%0CaC7gFb=|Y_)V^>yw->h>P5u_~NFE1eW z<|u(>rev_5=Y(6&AuYPi)4%f5&ZJ;Nvcz+7;Vc83A`=|~lwM}FlV8@%#DjI!`0sV3 zZH1YajkReN^?Hfil&)bz#eR_e{*n~beqQ-6L|6=}tWB>*w=wpmtY?XITpOndp7DUD z1Q6I%-kp0-yXzUTNL^t?XYC%PL8PD>g9Fib!P$Hkj#~1Kq9cFQfM-npa^lMa*+5VA z5G( zwFUY8UD_yb|C;^#OodN~ZSe^QPu0}y5*Kv~yQ2zWecl7w2s-nmnxEl&bjqR~`NHH5 zfzC7y5-*}#320TVvg$)P*5MoTw1Z$4_#~SvbW`8YUQ}nPcm^#nx zW0Z>{v<5-u)p1RUAX6l{K#*v!8i!n zfY|AAYcX8@p|KEPEm#$NbuMJQEU9KW^MxsH7o~Z2=3LzaxLX;~eC2_m7~C+ouqDW9 zTezeTca$3p-0-jT!GKK7gFyk3y*>D~`PvQ%cr;xVB+p{c40Yv6&tN1fUZZcUOzMli zOf$xGC95lwnRLtkfOL%s1O)(fA8=~jf3~66XmrIZL_szSIov7P@{{bVV3%G*<06 zfCtil21fG=$V!Pcf6_J(MN8qH)tm@@72ny7%^$E1?LU1vy=NXalJOnsAbTJCj%s)s z8!l|WF;cfX`U#)gf-a8>i!CRv|Z_+z;TizPN zd>!>Ni_W;H_fy#8)EhabiXQm9R4W5K)lz4nvG@7JuW5+lcDdjuNoo}dnnMC8{Do{^ zt#R@>tOjFY`WVKMbt6Hn526|CiM_*XSEVX#kx*gBe%$_X=$Czk(}LHGP$mBWn#7T} zU{CTRTU3}m1p~+m+VpAzkR6~8|TUHGR$7u^P zj&9WUK})l#iFO{)S93uvq$ToZelBtm!2|<1{@x0^Q65rs)$_;dn{3nS_nUYFdIIL5 zwY7?PMWwrv$lAU+$L2ES)lr5o2H3m962X+;DhYYo~y zL}&8LWbhpOp4vOgDa_7mP6!hqwH!bKrKis7@pI^zoQtzE`?l+P<5x{uH}6j=xEmjEU?X0={ocMq2xQP=0q4K-o@JrJ#90AOEHREguerpB$rLn zxL24feW)o8*P@0IfaZ#|50=c*A~hg5Jwgb-1_n}9>gt;^weI(w!Si-9aMv{h4i`LL zimNe^@!hOYx}2;9_>6R)Zngi~rqlPWbt(7SON9+=u4G6Zx~R%eR_x$O2+$}Mh8?j` zxG2KUvD~}lB$|B9_Wr^JC_?cNTI#ZsY!i)K`pEGU6W~GYt5{0NTGg95r+7ULFr}+^T=w2|fHB0874B2ZH_F<>)w$UZ0 zZcqS1ThqDwc+||f+a-5&EfBHVoYuj4hv)D{rs`v{$|%R zXNyyQ{iMp!DFl)df9Ydsd9(bZEe%lD3m`4`h~# z)HK{Z9m4jL%*`evM%utYI<7wPR$+UWo!#kpOg!@|IHTo?cx;r7`Sx|mF!l-t3oG*$ z|Azi=a#^Y?Ihc`mrm7zo3+o{f78cn*;cYJFPrYFFWxBHtv!dkw=Xy@pHAJ$=)n>{F z1k(;ARqg}+=jgMt?4tOAr*ecW>wSx!EXvIt_0(ky_EA9Bjs9;=g%|D5^ejmylyWN? zlWQhfv%{70GELm2;RlHGc`_yT8}4^vk3%MhDY>}|fa*8Yx9Pt{f;dlf&-L-Uh)YSRE#6n zbqRkGkzK&d;uMKx9|=Ce#zEd^r4@_ ziW&@KCYLXmE4QtQK)iIwwj1i@l5D1rlu1HSaEiPwEHk}-x4FuzRJOuO)WEw8v1-z& z0ulq94`ua8zNv&X5ugfNQ#SzqRqs>sEx_T#RG#HaD3>pk8aj`Lpxbns1&yV6?rbMS zmhH09ojMp58!5fmj@;z53e9#7A4M78sE)m$xn>Dn#}Gds*7JeAa9m0?o(#pE$_kJ8KO(Ko5=j+e$`1S0; zom1dV=Wh0qq8ab3r%pOod4by+Z(Oeb+t|h{a@TTY#k!ptIGGg5S0lUJD$eVUC8rqD zmN5AVTbhFRO2+VZ%lQw^gF;!LM&~}SQwrU{Etn+9frSTKcSL`4@Qf9)!I|+56zymJnixdGup*3&=H*{&0oY~?7h9pb7Ys)-aXLq=2^};o@(&;k!05$ z8p<7wGqkZb9V1dAAih?Gy~N7!*$We1#JCQyhP+B<7q7l9G@7cqbz$!$(lVt@>)Ne3 zd0JVi!B_=>DJ^8u>`~{HzaIQ|$ldC;n6Wzh>6o+AY<8RR8w`(|Co4|L4M; N-+uNxFKhle{R;xhATR&` literal 0 HcmV?d00001 diff --git a/glassfish-runner/connector-platform-tck/connectors/whitebox/mixedmode/whitebox-mixedmode.rar b/glassfish-runner/connector-platform-tck/connectors/whitebox/mixedmode/whitebox-mixedmode.rar new file mode 100644 index 0000000000000000000000000000000000000000..3f5bb522f0a963f6bbdc88ec8331b483f3db434d GIT binary patch literal 10213 zcmZ{q1#BJ6lBLbejIpnonVFfHnK@==W{e#(W3FSz6f-k3Gjn{6*OdL=%lB-&(ChDFJls?FXrp0A*W>6!cqo-xu4(}C zr<2loPPZ*s9T4yUo=#%566349C7(j&JYJgOs6>B0pB6aV z`&wH$yINVZIGDS)1$%s9|gg%kAH&xUuF#{Bzz$_CdV4!J|s` zbTO5mAw1m){xEsou>4RDnBwnsy=rt=GUyDB|D`tf6F|NPAXgG8tr36c!5}XN98qaY z6GDPCrgmk?$#MPyqGH%S>0wuhdsg4+p+EEWL{EFm-Ah3b^zyjcH2gKh?Tz!#zY>)e z$9^SxVq0c-O)z;}Wp-q;Y_^#;nD%;qGJ80x>ZqfsaP}v!cbdnP_mf#f2);O9)-Q zk<;G@q&wcMrbSnYX;ES72T`PgFqM$hd%q9$&6IHL9TzcJ)9e>=&Ek$sBek_r%0!K)i!!=r#~F{dv}MXKNN zpd>zeN$F_;wswwoa9o&wJEsO_bSD0|I-t{7I!e-3p)uE?>m{)4ieGTbS)UQa{`n|N z4QssEPBpR<7yg5=qIlPsIn+>G6w@NZ|hNibnPcGjTKhLPg~4s6hUVa2L8x0nI~T58l3& zxHhzy8#kYRldj8^CZ=&Unk|PN+&15RHmobY;AB)6eMvyWZO=^E_?jkM&{6PRBx}Rc zPWI&hwxfKL)68~1jfAj2g!8V>z7N&|vQP*d*q+aI%A}{5U$iL_wzE!KNHO9AjSMF? z80X3pRwPwOHw>?!i2Dr(D!w1yBbz}=+f5ftCOnwnL3LEDG!`6%wsqQ>w;8m10C^$15`Y|J-2W9c_0eq+>^iR3v_kFvT@yT*WMlF1+?kO8@)M>JKcFmXNt7sm^Zdj{sfn%}R}1bDX(BMeh~jGKC>g^G;*S*F9=%Hs zh$?<_ogl4OkhBlB&^0oV&*H@IBiN|O2(^RyIM zB)pE4&6f-v$54STl%Qam1yUmSHn7C(3tygNLVjJ4TTO{&r!(vNpfi=NqDKB&A`+*6 z`SrK;XQmhz?px$L|JnMnK|<`Qb!qz>461aMQCmOEE}?!jE(rP@Y^n9e=9fQRQA6EK z3FRjk-9VVat~D72gPO9-KZaco0xKllaTBJ*1OmJtCR$B zg@8Z|_6{jPl3;`=Q}nE0gUn@(xpn5bI-lH0ur1?rZkD~f-sDqpbkG`Qdc2q>GwgSC z=nG;AfazkAYUkJAT)Z}56=`BUI-T5*bN83LE{vs_!L>6N8i~0bpyu#LK;t9~&< z10Dl=tYpsl+SJ@DI98O|{uR2MnPLdCniN}e8v*QMvm+Sd;g51b(xNh5N?7^}?R!nz zDjmE7XRDvRt))NA>fBbe6syqveP>;ENWHh^sN$PufVZMlBVR9po)IOp9n|jt6OU(v)t@ z`|543GW%{7KgHF-`-P^?mR34Yxv}w->3C1PIeCn9N@GDyxXfXQ1|8naH6{Ypf65+g z`rR6cEri}%jb|!20}&`!?^}Xat86**0dLLPizQ8j3#@2kRxd9_s>z2{hK!ynttoO9 zIFC;J6Tez~I7an^1JZ#o2oxe2Hd9-uwHKt>dM*|P9;O{P(gV}RHbu3Z1@6YBTCSIG z<_WWz!?KfsCov}atBE=qPXbCYLo-skHvKl;4_bO~Un}w5jt;kqmclIs{ju`|zDkFy z{>F02bu9RBQk{0>wE#bhqz_yVr*}9L#uw3gWTW00pd%9P^TN}UH@`Bwl}YyVqj*tv zFj6Ck8;6dYfA#+Ue>;ZU;@Zqvm~ira^d2N4AemQ1HjRIJMj_VX z=m@J>E}5SyWKc=V?>o0OhQ^tO7#34lwb$avDZ~@e%)bRSqaXSRc z^!;F*dKLTNT4kTg3|GaVZrQ43!LKv44jiKLSEZb$bXDOxYVA?{W*J}l4t?Ah%^6NW zQYS}91M}&t)jsw2ri($y3_qrai%_)A``C_a{7bH(In_tak@17@gtm>u zn_=ard=w00%(**I#Nfd`7OTD+A^XvERoXBf%b+#g%#jfzGnYuRx$Lr@>~1(oJcowQ zJIec}M{h)y<*O^O6vw{ev4$7rYCVZt#m!zQEJ|iO<-!({Ii!(0UIx9 z-HH4cjb9bUii%%}x$oEBV5~G&ohXe$fc5qnKq=2xJ7KpE)1*=|6+TcY?1$g)3tQ6V zH9kyGtDI#T+5RX3uSn^b;|zgjjg#0nrmb`cHBPX9iky!AY`ctG>69=n@flJ*_72Do|FhnvJffqr%Iqb$7Vl&EEU z&TpXf?PDR#ZHNElj=T1+81`JA9uE2nQQQ>nj$I6#)KUr_M@l6mcU36WgT+V9qSPKj zdfY@9VIr(umrXApL-Z^XDppl~U_e~)yughZ_vvYu(LoHsTw)>zezyu3jjZeBnY&xi z38Yu1@BL~_ltD>C=F$2nG%ZJF-u=P!rnL)c;6YF*yJ99v*)G-w1e@;zLK<1`MQk|P zsySSm!k6@Ea#R7e41F1Y>3~9~%O6?!I-)^NS^lXKVU#<4ar(x$V;f?58Qj}vAZPdX zt@vgWm#+(qJAgCp7MP#3#yBb#+>cPBPk!8eB(`8#ju6*zP-v|82v16D0>yADo=WrrpC+;eNQk_!=fE>AHqz9ubz{ht1r8 zsUwA%ow3y_#SmI$=~;PijqIacgWvvb30bYW|z=^Ew z{&Tr_eblTW`~ZbYhHe#Ii7mCx(bXQP&0VJa-#X!pt~!ErJh`;2(gNE0Hn5a^P>7uf zS{2Dzgcncu{o{b~GbP!d?TiMZg@NB%(zyw?T6taLWEXGR2l!-^;Zx|o@*&GyI@6yB z(_j9PHd-ieWY2!=2_CFDmUNeI4VBmAZ@LBk!zfjw} zf1V65<539h%E%Be*z2jbc+huUn-1Mc3upR;m+Adnluv49b9i=P`Wo3#U!uQEnD!7l z+u{eJ?n{oU;56D1bYFbF-v)TQKfrF-qHe{Y7RRchn6DmfR_T`S%14!Q)zby~B;gH5 zDE&k)I)ByUHILb2kp_Fq)5i8|H=$B#T_WWjbePa9WW$_46mifRxbjCr@#Nn|mh$@V zMu|p{2{gVpiNHh;>9w1B6n5A~a@d?!Ki2HoM(21mFzw(N13i-u+E9{VPLd!-JqVm5 zB)A!j;_zGuo!IT%n&6f^pk7XOf9Is*WpobQSR_6=eZl1Boj7H_&oyl3vX~)4a;vQO zV`9FQ(OjC4Xo3?XI8D^P$ChAK{i5(0@JagBcW#320FwS_Ef+_AxJYBLys;f3pY5<4 zgkZRCsiANAnaRtviOt9(#@6nsqoPD5{$N7XV^yQpwj%t%gl_N;w1q||`?`)5U=Vxv_iC?|;v zzIHaPRkp0on*K#3Xs_DB1{@-(~%6uO;}Asth16M&nK)tcQDm3p&?nh{u;cHuM% z9L~7#gzo7MfOFH}J@+cwckUG?Kj=>TzUQ-XDmZu89mZ#8+56qxl;ac@b!ii{csxio zEj6^#WUvvhvqTL4Gull6#5&e@jB8PkgMq<65R@hU!7!P~p}@pllfsn=5Ppvz#gq;9 zoi@g_hVO=DffJ*UsyYHr?g3FYlw>ywhtD`Smoryy<$5>a+|fHCl15DC@HdD3_R<@& zdWku&(6Y0>HDt}CWm-LLzu43}2RkDDss1zIo-iToTl5`2f>UR(i~c(|+l?_%9f}=r ztjziwaa5_iUIk;26~R7uMBGdnOiAN~(zw$h=`k>Up0#Y~XYV`{IgJ{S|7z=`8jcuusFib81fSmdmk>1KYo?0kqa3LMl-Rot1V z-+kv6Q0X0@a`@L|^sjLGZd*#VBYN{b5)FMaG@T6P-_W;1{g3mjx0SjgGH5pddFCg) zt(SFiMnOUuyV}yw+z#OxLPKNQ=No&s1mza8Bl>NOQ3W2pO)(SKIy?!YZ#bs&b)b_I z`&c)iR?2R8OEM$C^2y<|qp>j+9km2EoJT=GKt}*|lJnp=H^5Fny8?9s7x}V;$5uqN zIIz&=c9fRJshuq?1-qJ8rJc8{aP_vkR;cj3TAsX)Jvj2zVjztdSz3rE0}dlqv|7T} z8m)djNt7IM{tcMrDo8KSCspr%84`jO!4tb-6xx=w^^UX~w=5ai6Tf;N_YR#9Q`iI@hZ*$VF-^(wD z)PvNlSu0pgX8g$b$E-M%&xlT4->*vx80>=A8YYYs3-!PA{Y(PIonZT}j#Te?>grv< zIPo;|Ka71RMil#Tp5q^d#|+fTjq=Moe==;_Zas2_PWl;Otd1M(Ew~2MaD#GKC`v@n+nWimN(|`r)1s zw79A$WSjQ&vZ#5l`QR7U+qD}EIyPDBpH`&v{p(Bxl}iu{N3j03l7X_qNucY&}-?B}{;9q-|9YGBg+XtH-o5V z*YvR&C!F+KW5)s^;GZW^T?7&)Z@#WLn+j0C}T! zaNkx(AWn4LH~0?h+k5u)57le&vV9|?O8ndMbk(@A7Z~iJI8|V3gpIt?hi@?59CNC3 zPmMTlH(wH7#N`}OrNOPy<_i|)Jp3dVyF0fPdw-M~3Ru5H9OP)7X`sz`Ke^S{pEZm+ zL`2P;N;}}xDcgyLhh0VhJ*3akBW$=Z=v6fPmDQ`NpkcVvfv~A3*dbABBAZ;7zB@n%i%aNfDg!|A;^A=*JxFtc9Q+$O0 z8fI>BWzU!%HLW$gvdS^|&BT}Qh!?1F(YrkSYK(hJ?Kuo2gt__TUjBF4nqiyEL0@um z&2AdLMK=}@ygt@)YWyW-T;e7A)@jt#oE|6Hrc$L#(?GZp^d*;?OsJ|-%RkOx?Fh&g z^fkcc&ts>h)@DLmANoE(UxsLIplP|`;Ru}>fO_Y`3nNr`Vp@vY*jdS9U1U9E{`RN9 zu<))kv;IJmN5-3nDf+dP=l1*opJo5gyDhMbT$XeS8&^Z+8|=|rB3gli>>sXla33c1 zlSzQ3hsx)>B3TXVZS#!u7l7ja*PUK#F)38dAe{?&!=*;80JsMdR)?s&z6t$e_Qd;I z$UXwbAEA6lvdIms=?wMpOPB+KQ$J}B#;rvv?uA$xznng!+wUz|s3hk5_WzzL1$EA{ z6%MT>!*DI?ol;=fDf?~(T=8Zeue+`?Fv6St27knW52vLV8!)-#=_O)u83Pz)elmq8TgQu z+G6$U?b>oUkNXT`03Q@_DV|cUpKuwOe~xLwxuE`}=Ij77AFV8z!*C9|wSIQO=-^o7vNd1kuYH-_ zV%r?Bj^+Mim0G0xn=SEitxLwd=-DUR2xpyf@xX?j1s&Wm4A|A|uZT#F$Z}vet(or+ z?kua!lXfgY4VisNKwne(4Y`?T(eapL{Uu3Dy~27Na~@OYp;-v~$$yXg(`_7>w;2qd z>o(23!tX$7wVlwd-UEUT{8}x|Z|nj>_%YB$aG7!;^U<)8&pcRk0C+LL0FF@%hZ9Ishc5HB-XUG4gd3d1j~JsUlpM@R~{Y;)V7Kcn9r z`i<;2bmFK>7YctF7}emkXh;@nrLUEKJ|TTq78)~X4LQJabb3Aq))Z2jlgb}AV?Pzt z=kE>AE=rfhLP0iZ-?39I?x33m1PRq-x4nGI<$(JQG<8C15sZ}>z~FuxR~PzaoN$ zGi)p}B!i-;UGRK2K?Z`GPP{ag0g3tLKmCQ_I3?&n1+TsYoTe2D^%YG`G2KF1C)Dlc zUpdsIrUENxII8t6MPACW^9({;hz71g3yC$n9m%^+#E{WBudaV$pgFVW_8n1qar(DM%Z}eZqYK7I=m_~k%JOQ3&aW(6kHE$vU zMiXDB17#%)4O}3w-l?Ex1vGPmr?1fd%#W44Qwh(;#c@={g7Q}IZ^2N#uysKm!bRoX zej2T!Hq5InYBIt4+p%>gHe_x1# z->g#U*!S&N9ckNCF}JTNd=gGaev^T(ZlQInU!1#ybK4jRl3Z$Y4je1%%mCG7x_wKv z{qxvPYKdnk?Gk`*%?ky){gEf=_aUAfmrZp>r}r#G^!x@+5gB5)^#Ks>2rfsBPeP`( zKSx6Ea=N{ltg|>x?1i*l*F00}_g2fOq~m?Y3WOi%-QDDBoz!#?2c8#Ck}gdEaCqf{ zq_^mE*eV;3m#^qYS#jJNGfqE9!Lolx)HSn4Awke&bv{Ki!^`2iqsBAn)uK1NrU|60 zUj1TXP5^N+h)?)8WmG}gy57H{M=vQsm9M;{Ox#AMT0`tSR3D5J2 zd3GOKAhE5dB+1}NcmDE7?)a1zz-(A9iZJ2WTPQj26xeGB&j(e3B3rXzLsi+D(?%o8 z-k99OmuT??Oa7jPJH%n*e5jq(mzJ_cZSbw)?t?NmlwYChUU>IPo1gaZ$2VI(2KP$5 z#yId8LExN0rSj?dObyL4Fi94A*)_Thqlc0twhL&t18tW|dYkvn4Y(+Y^)UwN z)~p*R92dCuyD%*W{}0XqZdC3L$fn8vifdh_v0gG!o*Bu{r& z#jJ5SsL$Z&foI#Z0~orpOUEiy3!EqdKaq|7TkSszVGR9vJ=HOEYJNf9K7HVmf z;Xl1!at>9Qjl9YN^Macmen^_?JkKl1GLSQGg`O-1n57#3IekLZli+M+Qu-Emev%c* z41v0H;@h8K09gZxmsA&LkQPyv+OBsNI-}>%x+eg!?RhwZ@tdoqYHgR z(J@uxf7KV+3kMN)(867l^e;pc{xTgdnB9hG zRu)G*l+7F?ahFE$geTT#Us52lsa{5H>@U0Tx32!xZZmdnjIy^{W`Y-E|oM%)~GI?U}b8Tmy5UxlpCQ()|qdQQnP zm?zDYXX6_KuV>cBpS@3Jn|K67Y-HdF+g`2qdcT(elU#LD^h#G>kz(*utEu4Bzrn;$XEa1F z&x(cqLQ88bRF9tK9CzFXoieQUswbom`!iJY&B$+#Av>;yE*}VjmQa7frNUe4mDTIbua>W+>7JV5;mr54Qpi6jm_){A^0l>cj6_)QE}Tg)u)SBp~DR7Hmj{nn;;RD^#$%W6CR*TnxX@_$ntxgHqWVilNQ+o2&K z`2N9Q(ElA|aW`l2b#~g;QFcA#!RUU|Z4hY@lj6UzHm5Tvm*-L5cS>B_ykRELw9GS% z$B~;L``bgQ0BT!==+=hsKbR5{=^>oq19#2f8kTx3oaNnc-+B=`m~+&e@@~6ku+CTA zoHl2?<46~vm7UJu5Hp@4&j#c5HU!_kF5-5-2|rng(^(Zat?AKpTe9WJQ}>r0Ug^-| z4UjaQ&9Sf_a_?CINEv^8Hyo?8JHd~nh#W_rBQEWC4{yN20T`73OuSM|MXGEzt>J9e zR)U}$-D2lNCP$YT9{><%X;Q-yD}?2WWamHn-Npm)G?)mSd!V7o)bMujBlt{!IwX!L zE>}W2eDJuIB^2?ywxT>0xN-|txZS9fwb9C~n%10Unfltc#AR#((4B~OsM4}qYVflY z48q4F>Z#WCR1>Ha_LsaR~N)|k3DW<)RvP*X2q_9S?4V8R) zML;TN&Bj`Z8yr4e2%yjpSUlX(ki{kL(ity87%!U>-60x0W}P1w1>k|x+B9FGj=x{H z6HBX5TC%0K(AEa+^sK|XyMB$HoSLd;?D|YmIDOY1QK5}rP@x6Lb0eubXq-FxEIQYG zg!cCP@5Qp~TU>A84!M{u2mzcLynmrNqqV$p=hy6B8jtQ4#aK4>kx>#W}Hv*8-jxiD)4t9nOO(=9ptlb-H72|;OHugAbF!RO1UX7@IKAz zEHX=cH8Tkz=7z=*Uw-8RD`I6t()hQ07umd-oG#s(6p_19jf0TNw7|qMQB!_BW}6wk z({4?&Vd+dFQ1`Q#qO4PQRSoMl&%rj61(XN1IG!Ucl$7DyskT{z9hIjzPFL+AHEpkX z5iTD%?#siq9q$cADV{4inZGBDid9rn`v@vwI1Aj!79j$QmI?4_RmxQComwc#s8K6 z3t#(B((V6Q|995yUxt50c^KnA`+r&gjePs>;t2l%*8NXZ>_6=PaRUqF{{YAS-TJ@H ir~kG-Q2bl*|D0B8im-7162Sbk9{a=iOp2Y6un~bZkJXLdn-Rq5eFiHg!`$4I2N% zbZ#u)Z= z1PTBE2nYaUfDlzS*8@1|L;wKuPyhf80001Ob!>ELVQy}3E^1+N?7CHOByEzWD`sXc zF*CDD%*Yje(-*~<+xzX^NY^Ro!I zNcYEH6?sS~1TZi-Ffc$MnkLvkT<~B}V2Y9&qD-<%QY;@+U|=f$CWQkt{Yz@zVxpk) zm(2XH!1^oxL#imMBr7GUuEDG*^{6;Atsu|DyofB%L_aq(->k;E!f|loG9!-R%qXKU zC!+}l1gAnqenLX_>dc8&!<1K3cgv*@;t$k&ifLiO=6sLFNOo1j&UuVRc!h$dVkCT9b&Aa~dp`rc?fTKOj|57acivsT76t3SL{u34AKd9VX|3RqpFHZ^mpM`Gb zuKy(G_xWcz-v3Vi*A08ee>{zj+dpTK|0h`hM+XOUfSaSsKjc&XOFqN@r+g19Yd3RK zN6-JH5ZC{|LiXS7+^kI;92{BxSMU6-q@j8Skr5IYm^2v}nC5@Aq@t*ziGzuyxtaL? zR9QPZNSXXi?8OYQGjVn8)q(fLI>G+zzjCnHRDfed(-}gqOR$4LBqxuO0DwhNgUfmxf$h=#_xp{@!QIzz!hN^m29iEz68=l56LjV0o?d~%bw*JWc{%02J z-s|sH&v&VXPc7d+N`iT4)%`CAsISEf*UBXC_yLJ`+VBC%cU__V@~^Na8Vb8bV=FQ$ zR0=j%T5a@yf+Cj)fo?Es)Y>+1l5CpMV*t_CI`NC;RlLHOD4&#!I;bRh@LHCUZ1!`{ zY6iSmX*UQiv>iWSnSJyaKb(=c4rxt8369VhMCKa)I+SC(Cl^C+jrxafp^QvD74H8=^L&Wo{ zG3C7TSgBX+s0vXb0z|t@gbN#=7Lf%))Jrldj3}6_A6Y4pOO@^`*&2mbW~Jnj?agIs z>M5XVIGsI5-coEKKU3F0iZ!=`lXVOvFIm*pU3 zw*EMAMrjS7NV8Hzv4?>-_ahP|^SO{AZ)>Fr5jQeUaLVc(NuitMt%|QCwh4t4W^^Cp zJ+(mH%amX`F%hkPb~P*a;`LKqQb>SPj~Gc%wu-zb(};yq6f=pggYwBr5eDVRzov%< z$iK#i@@y3L0!gk2pqR>oh}ZaHE(@IsB)JS;16~}BSbWZM5y)x$H_7f_3%7LJHZM<)iIE*8c8&NLJTfWuCXx(?9*;4gTf$V#RE&U^R`JyFNZKr|ZX(zzC4B&)8 zMU;wA5!mc;;P({iz?fAXalB;1H_snCRvMO#wH44Q`4)J4wR<%;C8)I71|E3pP*UXtIft&JPpHk+1Y1ZRHs zaS9poJUxe<5e~9{Rj%M0J!a{cJT46OD7`>ZSI0+SPIRuk6YutflEtZGN?8n=4b`P- zq%d05CQHFrtnl;LRFYvbUEf$C7&6#~ngHKyGF)EW!zxt(I7MZT0r4KEIOE1JaZtdM z{ICx-5)&!w72-*vs3$ZOFwL_hgfpp&rOPm~$W1M)6qc>JVh9_P8-5GjNSPZ1O5wL3 zXhq4HKOMT@w}UL6@dOeq78LMtqw94!^^5q}Q{nsfLbIu|7}PuOPBN~JWixn+hK5qD zc>ieSmPv+?jY_!qvX{44?6gFPYi9_(ab`acPt{Tn&LqFkgi@7zhQc9AZSgv@;T6S` zzDDfJIGKa%*e}^Z`&5B7Zr$#zF;UKr+_6)#@ z*%22{<}B5@UfegoVBNjubJvL*V12&Gq>Kx@=p0-JkG)rCAHPqKeV+SRm0F&KH_ zLge{77TMD(NR{pW_2z!(HklCeAan>`MN?}oZ(!V*tHC$ug}P<#-lDiC3d+5YsMU{f zovNnxRkkwV>{2&5jP(WS#)ZW&K(u!kYOK*KwOwcOK=%>5@a)w*UrKQ>XFWx-(V~|f z*RUYE8eT+nT;}B2&M(|wBU*=?X-8(m6mm$jBI6TN?2)O^we=gb`jXA6S==r# zkQri(+^&e(H;<9Me=}N3`30H&i(w@gJ@nk=(E)UHDqJC_LAO;4X7UX7rebE>BHfz8 zfmwIL7KP&yWE~^rbL2-fgFGW>L0jC!&r`N-bIocFJW`jCb>jUNMgDath6)q@$|fM=w6Dio#5hxlx2-!2-#k^;{d+yc?;#pHY_>&F;yj=p>zGj_hnq8 z-yCD` zEr@ScT6Jyg%_?u$3(fWAzN5(A2;zgH0xM7pp4d~+F=YN%fywB&6W0_zr^%VO!ok_D z-M(LAoU`V(H( zeGl%N;QWCWFdqnFVobX;ffv{t=)7gMjR>W}5GFsQPZ*&tefw2xS9Vc=kViPmusbCB z*b7dP_eb*)=|zKN45E*;)367$s)Y+ zr_Km8MBI5IZ~wB;#5-SdfI)zPIsCPMs{Pj&8Z~oQ$L}rxb5S!BCpU8!S$iitO1A&G z&D5%IJ7BV*2`Mev5#nGVoM03%p;^hGhtp7gjpQyWqD97#JlWjTnJw#fHxsb_#aMzv zN%9INjKIb%O1c7@P?S2J2g>9a2mNfnHSUA(j5&okbsEk-L7391EQni$6O(xQYq2NPQV+@MU_R-NK$bzj40v#~unPV|{laSvJHCSiBukDBWwX1HPW zSW2QIT?bN^njN(qMue$OIsx0w0rRkL z`f=~l+GxdrLW~#VNMs`xVAgT|i4=*8CBjnd`jMxX?1Y0c-U+E~`IN}jZ_b(}Li!LeEE}$U`ap{xguTt=v3Qo&FGRIlv`{5mdLrPqyCR~6 zKk-N7p|Dk`F0BJ`D-wGp@WPG+nZZm>=GT6Ao2*UY)5TY?4Umn9*PVn&zcYq6tt^t_i-7%ezxgR0 zihlcRKNrCU15^1w+He2XZQ5@>gxcsr43k@}JyGhTva)If?Qz8V^t&aTs6V(zzvpaK zUZ?P~jB}bXIUdKB8cKFIPUm*21OB``M1Zv&=EIkmFwk-qA=8W$R}9DwNXjadna@zty?R0* z^kojT-`U@L7Qy>@s=*1S9)PUz_hr99=UERmzt+XvPQLm>FhRWVLC-V11_k3{^;8^C zL5pbIQ9z5}Oo^!8EmKmy8w|3Ty{mogWhCjBJK!`zcdSS7?pHeC%0Wl+rvSCH8>Qb1 z!2bv|#~5C;8itxZN4>J{5MZt$Eaix|y=a5iLQBk{n*R>%&GNV_iMc@W8Oph&`b@}ZhJf`_ z^Wb1i?s`sAX=mIi0ZP8X#5N9WI4NjL(%xdpE!NpbYdYPfu2Mg(7WwBD^2AStb7+3S z1eRl&%0XvYL$NB?C?mL|MEr+~E~Sj$793K8T=vmgrlA{*CYzDfmU#WaXGt+Ul$7+Q zPl|K-ME4gG95*%P7PxpQ!&$T&Whc*O2CjOzLl|)@WCm%g;Yi~qdB1~yF&l=Snt61r zK|II|PIxLwJ&v)#>x<-LkI9saU&}X9n|Q4`p=z>AjPB+F6(ZL&S34e z)^P?R_Zm4FVX`=%b%Nx@!v(CBWjbn`tE+;6V~s>SnWq7zO3jAV4bOTky%#m%3E)`1{ zS&?n!OI$_E-f^~@KU$%vyr-|p*Z4^9FgL5X(zvo^c6e2nT$PZ^g+Sx@kvDb2Sk2?{ zEI0Cl()APH9RkeNJgEQNB;eg+v`u3PeY3a1-)9PxanIQOHi70hqS{DoY$B?NH}3Wf zhE2d-*#T>u=444L#c-J|sfQtJm3m(WY-cSqWoTogXk9!~D`k1j{GJ8!)E^X}-y6LR zyJy3{t;`tyqS3<=_z{V!u@lWij{vH!FZLMdQXELFvj-`qI#x+*B7I*wU6A< z^RAP-eZJ#_+O5_c>T&{KoO^9$c)wgVjBC0+Y>Ix9^qZ+h%xcmfGOyRqB>wqibIIjr z4_jTG;kLF8kHgR=tx*G<-O$ix)W=b0WpUs4g7;X7mn=>5*zZBEFomG}g%>x`QE)`g zT)E&ZF=}p*c#n%6fSpW-7fnCO;ssBb)&#rRBB;2$CWW+z;Brd$skYEpBCbDFM(E^G z&Sqp9#e+r)pu8g!uEKrSa_lGEQO9tYy;O&}Hg|g|xKQ%GmS{JqM@9+d-l<(b({P#1 zS<}y3%F=gv2mGiSecM;dPIX03M+Q!dQ0o3wXzv)7*_|ahJ_w~4+;tC8!zS|uVeQVzB9*ZMa*tw*sH3AQw zZJI+1-ACe`FrmR^(d(88=p#RiF{>iUiGlwmTI#{0o_m_TjLTjbKL|P?8`e*CtX%LB z*50RTr2EJ8DiS1B|NZmjn#7zF_iGYa%O%~7fG(@p$ha6YuD1BokIo&q;!P$HhhsKl z5Fu)Z?erna2fjQ-aQ7V*r_=FuZ~!7jk*W^`3jt9+4s0LK1Hqu`dnc$hbpDNZTbwTn zRJ8&vQ)y;KvZ&!k(r7j;IWq6fy6an42EOnW=~|`$ah7vYO#H=F^C$Qnn7dQT9ciB& z6ZnUt%_uL4LTsKmqkBq6<&)qsgNl^8L1&EA0R)CP?xNeeS4HI$6=O1M{7L1b)iaHD zgDGcfU!XoS8UA2ldm)Ok==3>s&F^!@So<*tBonG4lG*OXkuxo|9Vy`UqMQg%(y>L- zmY81mJzOa)>r6YOFXoea3Gd8jqmXALEhQl@`JTiGWs#jY3vt}Ha$MlVX9Yp(B6YEH zSs5juG}!PRr`Qeggrtl~q)&iXigzrz8W)=LuvT~q%x@OZxRqYD5m&t5%#>))r~TsX z8uZ;3ZcW(qx?WDECkgGaHGW~9?FX4J8I(y1T!c`lmT?tumelZBH6ldlkv8+K0u@Gh zYLZJLRk$L^FQ!4dDkp`Zfqn4Vdy1muHsmMtx7f*62s_qZu=X7Qmr@6kCQTJ7A*4)Z z^PicTKwdnI_U~jy${6!VvD<}cq1$3;E)o+FF2|?<#;<-Eu7&$4 zJ-HP{ZEGxF-wx@~y|XMVs)klIf*gm|I~&7Xdw8J>wjnJsC$+%6Q7&ycynz|<+I%?` zyzj9Ht5wiiN!J3^B${_)9+ADSNyg zN}bGp-uEl~?xkD4g3_U9mn$c#?wW&v>$70;hS%P{OW62af)`kY)D{WETmvy;{VlYM%m5E z+(l7b>R;f$S@Ncx1w12J0~94u(Clb%MTQd`Ou_~wDZF$bee!Gq^t}fi#7EWXP zsy9HWLa&9XwxZ!s1q-$1S=hceUdtzcYx>{VKQ(UKpX=L~S>OGh%eVfQ-j_bV-@V1- z;4|fX%sCN04=Stm1QW+FE-eVJRX#>2l zVrHV@5Yt~|G;sp=4VdvAP7v|@_ZgV+@}5J`EH~)GvNU;ahc1FArav5`4z1b#w4pr` zv;C>V+{X;vPrrl2mAe;*{~Pv0Ejz>hzULp<=(xPTTw4q?7^A;iX>ISNAJz zWR)Hz4swP3c8Y^xEQSTUb2-K;cEC}x@g)koIstL>DHM5QgHi#1aI^km3vr?q;UIwa zF#>CCr9@hnY?B2l(>9Aa;26^b17FOhD)T6H$+ZT$^bJ&(icWHP=SHV`aOsD8%971Xs! zdA}PrCXi?h9YzME?iETA+GsZzs&!Y@b15)9rEcOgTf+xC_kHY#oosHWqLJ-mm^m;T z%V*!Wugdz4wD)bke$~))Yh7#M!Go_?3EdQcNA!D+JEyQ$8Ilv|CSSeNtlfU4Ak4!( zZ|uViXNo$|+rw1p9?haYoK?_CS`zAs;>t`^=MK!9SwOEam&AtQsk!+^dDhh9PUs~p z{?cH&7`(V6t-n78mo<;zuZTQSBZ%69ySXXXo+N+Ftj;INeX)iPwsKF0>$QTDYvG(hH+MxaH05t8^%!HIbP zG=Bt}5Z(h%WjNyJ?Z@m7(_2RTOdoqt2}48b!I!@V8y>hmnaj2(jcmcJo3BZEi|BM* z#LV2n6VqXI)8Bm~vC?|J4)w#a=U@MpdGm%*&l!Tp*&B=u;Gz-QHQ-SgG_6HWwdY*w9RlVM1J_K};F$@&mxXirnL8Af4z?|ry9#l> zqz$QF5k`vI%}*ZL&JvuhB-NuB=f0lXuoJbC)BZ>lP*t-)bY@>O>5Z}AoYY|m=dwz= zbHsN95sS$txeu%uFYL7R)LCa1F_dB8-yR8x%|;F}i4XDjC?Zg+v|xkJ7&w2F;3xJ=~KE)q=YcB6Es$R3fsBV+fgOR&pxrPog&GkFeFPT z2}6lbKBlgwq`1M#;V{v|kBb?&%B!hc7;1Z1wH-DHdk+PxD-4KbDR>v ziQ(hI7eJU=75k3Go8i;9p_QSUe6MNhR;X~t#0hA4CvS-}-LP*GFiEqYIxMi>s=Tn# zPEsp_FgPz+Bu5#WI4*1qrIVGpYUcbh+Cu4OZ9^oZLA%ULpJXklm@tV5<4ukoO`Acv zY{suRMzW)z^AzMQfdA7f!I{t@-3k~Jjh^aE<6!RC;93z{Huc)znJu+Ul|`mrdAG^b z!F6p{(==tg8o9&~G2_&gR+@za4~30cKO|vcr`EZM49&v!wzF&p>_{zC2(}j2_8NLu z7laDsqp%m@Ek#j_g+Cc)88_JbtxY?mEABXUP@$;MIk^DH+BALEuQ^O|wtCN*j z8B%54gXy4_l-VSe6Q1e5?%OS%K=aXGp=nAmU7=uZa}z1$9{H3rw%$I~n6Q@UnvJbc z)?Or$p0k(nXdaWjFV!l|<88c%84)YnxG@zNW_9zG=UlW7#}a9T!_(I%MDO$GNl_zB z3o4pIh}3u_9~8ah^R?hG?g}Ho0+~S<(M0O=i>c&}c%oRan+8fhC=%y%c%;pUeW+|?G;~iDD`E86XGr`?F&q#p zw~&&Z?~;t!FDbj)u%i=Y~l{uzKL7C<*PQ{NwQCE$9JQ$E$IrQ~~ z>zu$~A{tQcbHr2b>;5a0@#ifrJJ&qpAfuvj;|V>vLrU)5N9^a ziwA*$(y$Cqaif9yP#=z&z1_5d_G{xXq3Y*F2%ZiY)`j#~&Rn${D$ zPyBwx*%Hdg#1PwBg43ytSZa+QW=A3d6f_vi5>5*i7gMi#XKou$sb|YSU}SRSgKGy& zlXb+KXds4M3IibuaEl4)Q2{YvGt00#=;F}6c|0CezAG3c02J|uqiM}y~cy?jrO+x zT#drwZG|AMl7+L)E&Oyr;R|kd#*%lAQGO4J85Soh9p8*V<;WSw55i=;R=pYnydsf| zBYQ%$AC&~H%gHcujP+mF)JA%_7eo~H2N^bErr&KlC=5wERUS6=%BEkR$aKv#xUq~c zjpKuq@7^@b`lG!t++{o7?HRp{p>jiQ;Jc{|z>_@XEA#$P3Y+s;!qlJK<7)DjPjPI+ z9X(9Z4|8El58(Guk7v6=xklFS%8zUt7)|{=&HH*mqT%iOMbtX>IQ59PcZ`nYu_tbr z7l1nEnR_DbWP#Is;#~^q(f>&rHNloBgy=w$Z(^1&NtOr76^_sJ41&CtoEewTK{h(2 zd`Gan(dIkp8`C}duB7LPH(_rPf(sxJp3RU`(2SWsawP)z&zv;$Clx2PCy&UVP&lOq zrQ49EoA3z?}^=dQg>#mYeqSDVVLcJcDM98 z^)VY`=5Xzu^zmh&>h4HR>vR_K5fJL$iOgm^M6A7HmxB|@ZjMG%!tacJQ+1$Fo7<<& zj%kAB$sW((=7^6h^TVb&tl|y&k)4>_+h64S#f9jNfkgB>Wd7}6zsW$7>dY7kC=?|> zRTjgMr>X56r+mEID&obVnGmGjEP~3+ra9YjP$Ux6b-|Oz9MKgN;W5vfecT$^X%xX{ z(myo6l%~iZ8&Cus7K&jld3sJpt7S!QYRug8!AD!Or>VgIu%=&I;;bpZ=!g_IC{=4o zMpdN`QA*vA)Z9??HxPGqBF>Eyup+rB;!syR?kh=u#%CM-!w_#gWO3Q!m5{I8d0UWy zsw=7*WT2ulz}bFx!Hs#EsWmji5)aTNng;1KiU`>+C1JIn&@7+YckE&~qlicj$UwaR z1}e<2Q$!G`9mzFG9N*coyhw_DraMO%ey^R3RNWeA(u1j}gV*(-eo50q+R5zRveQSp z8PfiZuQv0OaXEp>E|UFQW`Cf$S+h9Q{H}(H6MCvDc51WFk<_cDvmP}O_gMZ1>_2ZL z7)lI_zrn%4*rC9{Wd2(liJIs?QvA~Y2gOgp_&16Vhw)XTq|!>&%e_sj`J#?^Q%PSK zu@X88RyZ(TEJhIx`v@GXR`8ii%fgds4(YR&{^y+^mEAm$Q#r4j2;D)a=7 z2fxTKk?S|NiOvPeXdbJQ6GbgawuFm-oR_|>WiEPgoR$(v*Eo_nkBmJ?SiC#?JZHP{ zXwHR(Nf*MU)=FKDT8Yq~RVMf9Qamr7BORfXbKeQlnmfP#q#l=Ts zgupgZY202S(yBw1nPbjNsTa*}e6mNw+(3$r0T*_-G}Y#x#Y zIG{z%1b1)E#DoHZJQag}VTg8Ry|F-|t0V0*G+jVtlESveb)7uVf&e-Jo5LaZuw8sf z&)VMrzDA7h%xGjI8er78y&P9DxCbr|zIB@CxA>H)&imyZYRe|*c9K;vyNz`?=DSAl z-vK`H$(J@?g0yqu6j3mQ)~qjxUj=3(_v8|_VwT-}!j*`zAk^$@NkUq0NQxJJ#~euq zBUB{)!plc*kBhv83sa{3V^Iwi{(b5P^w_KA zRcNAWn6Y5>VENDTly(}7P0Gg5XtEy|%&_%w3>^ds{HNl&Syl-#U;eqjxE35_ZQ#Jb z-Z8aTb>1PkG#lzFm;h_6KkzOtj~`V)6Qu`phxC{PZvliuxs z@n;&o4A98)JV(&J`lB8iJsDygI7zP#7%WuxO~6~(v0M2>?c?=ox_7Yp$zuPEq4>M5 zmEQnt$BNe|U_SlAZzg$OA?V%jVb!FE=fmErv{v|n_45~>fbnpO{ za*9L34QD#d8O}QSlskNrR9cw&tlAGZl^p!Xo<>4@6ByDE^D6bzas@7C;VetK`*rBi zWO^^r8-f+aVH)K-8oi3nd%|3Q;~=R%C~P0mIah6ze^cLEM)s~fCM-I#L{P)#)+@om zeFV?pAJ)Gcy~4;Pt(i=+*E4EA%yjKC)4Dt657hQ_6(9PJpWEl;r;v`KdsW5MTE%CK z5$*&@#PsEamL^SXH>e%{SB2JLcIgiHudmaGpI_lB3T4?9V zR>m@q%F@k)npRkg{IYKldrxMAdaVNaE!4O+t$&xbcWSF^Og1$ysi-Y4wGHF;{N>R` ziN(p1zbSd@O_a}K>W4!d);UR~y677m{%jE*hhcKq@+|xFQ-j4)D`2~M2_mw{S*;@+ zkOomNw7`+2Jnf!Ha-r0X)Wc^EoNTc!_3>FQ%VzF2Rh!Cis4QTCIpvaKMZX~enFtK7 zm4S;XoL$p78hLbRg;8z+>9+ckJP0je}<~AjoJ*9`Z6Skgk#4|lVkfzj$Sn1^@bhq^y5~MQ3#;lY+dSFhHhkgN4zi7 zB`q()A`NU?PKU@+v>K@7(wZY%h*h_?+GcktJZyTxT|Etk$DRAb)$!CDOAaC5m44iUDpf^!KQ^G|;#mCX_zjTU_q#@u0Ww?Bs|IEqI=**9sW-S8pI z`+<#VP7M%J#Ul?xb|f75mHOTDPyA~|iC$0Zvy zTL#kd$X<;$E(FavnzTDVRuLE37`Vj9#>-$3e#{cYnO*!KQc37W=1}sYrl`nr$R`?L zTp$Q(8aqFhP?~C_xdkEI=y9<774;}-BzhuA2CJ%fqwZvw(5IOPbp2Q#268WFHCswX zQcc9)O%)#TN30gu&!>59`U=^|(_%gKfx5VK(Qf7fo5O=H;isH+Li~EhN>8M)g}e(B z%J;i9-Y4TfVH)TO`UINcmc_Va=Pg7Yh#9)iTXFVWKY=<}8}D z8!qU%$DK}vtcKSYeV-B9-hW~!Z-tDr4kTat`uZ$PoS~O2C~m2iEQ&XOq3{FCAA$Fe zy|+y9T8|Kbz=szf^ZCxVOxzqkQU#*?|*_ggkeX;B)aOz7L z5LiYTKoF9((KG3h@C?iBmvW1@AC;EIm8bA)#o7A|{>$iEV6}^Tuu+;N!_$MDC&~S~ z+PWc^n~~`n?4oQZ16bcsOPT_tw+Soi^`|WM zB>jBp-gsJ&C!02VV`?3zkeS<@onNG_UhqNk!Wp~%rsc1`X;k+_+=pH`w}@7w(N^Q~ zjKK6wSR)g;ULd3=Q}E+A=rd6ylZ=Y3O#=JkII3X=uMbScM36 zd$!XX0r)SBntaE#ku-!1c|;~mbsF-F6_A@0ZJL&^+cOm&Yn5rLYvqD@Jk=`N%%SQm zhHi}r6L09GKe0*6H!-S$uD*>|!8A!^qOO6vr1ho3=2yQ`Ay8^vCq{Dxt~9gA)Y05| z^}ThzP@?+V5CNwV*8jXfA*E|hhl_++r-xbmK7Py)8uzBl3xU=j2tsruVuLh?bj^@n zDB>I=*qHOQh5Jaob2Z>ynp5&cR-p0?YoX-ppZYX@`J8tgKzk{x84( zzx@6`p60?L3VN#(yi} zwNVD!dMSUs#<9%`<>4@qm3z6PUNe(Y+641v7nd$b!`8&xY3K?`%$a`JvOoTXv^xxx zM3i#>dx;=%Yq5fgMBpQ4A zHnCqq!2I6-##0^L+iYfb(;AyxH=q?9kO8dSA$=vU-Ck0+f3WI;l=YU9E?IHw*mxyn z!7XE4zb8}Ed4PcbB%knYyQH|j#8+@epwaP!rTAFQd2(~zRq#v9$V1AHxn(RDQk;90 zpuUjKm=;zM(~|1&0T-eb^kZyD& zg=rL`iLU3e%~6-{2nnBBs@Csh}i63=4&(qie3K7U0}=()l7}GDt`LjZCpj&?R=DuCmOKUC+5NCK^fw zoUKJw7$n_2dhqWN%%h$-hK3YM1WIBlBw4fPQUg#O zs2P8M?ahtx=A7t2ZkOkj92cDJo;@RNS5K}kz)#*_zzQCAGsML79!r94k=ho6a zskf21$P~BWHJnycjD`vZMroUnb8uJgoQDUeXZYP%b4%__sZbBL6jlqGe9)0V4CN%Y zeaTUStsDz|I7|mHJN{w7I;<(=0XVHtm+hFHv(4JEy)mshP4aRD6*+{FU(0K|5?8f# z5+GSht|Z1na?V2He46YdtaVyZ&mNsJIaAC1=DDUaYthRsLV(8d^HVv4AY5~!sv-Q@ zG54&-X$b}1s$d`M>@|5fMNVHA099j)@6Jtr@|;3o^`;Eo@oAmU>#2RCH2q+Z8IJ7* zxr;*7*QD4QQ{|{$3spXkV3PIS&9P%rDN7Rf6) z&irB@n{_PSDkki$KaUz7E77qt9}wg8C?I?y)sE(XIl>q0>lLm2{Oz*1fw=_>S0-8v z7$Jg4C4Y0zJ4CceV`~mitqEf-{zPpgzbRb$fMLTK&9}stKmC+FQvMR6TU@!pBj97n1+4$B(LYB zEWmDWvvw=Nv8mJlC$4IBsF)&ABO>Jkrd))1_Tm(hR77RPn3vNxsvl0m!l4FcQ8*|E zH2XX;H2a2sMR|;6^G^d?!SSGx(dcnx!R&G6zB|(L9$dG4(Y2xC===c$EjJQwF@s1X za=Rf5|0F8}Ch(7vz>o?41gr#G#yrRA8KM5so{Y+{qMZkz_{5aP{)AvP61*gJDwSvt zT@P+y$Ldm|iJ7i}wf~LhawADQ{=`u20_IXKhye91H zcl(f_{NVz6{umq(1ZYtw!D`l%LA&}1WL2!E?rY}Qd9Io5UKp$*e!~`JAs~9 zT3YIuo?7%ydDv1*j2L(P7fBLkfZ`YVL9#+RO@G{Nz|?w%vQt`GJ5lI%;|bc%IBQkd z;P)?*;0w`<$f*%*QedYSkTsEo5W@4>-58^<5M>ASGXtyPTNvu!TtZ4CoeG>&zx{9s zXJeSf>ciUfTuZ*#)VC9=7Ug*n)gG|UXwg34TvI>CALmsCctH~yYk=Rb@nc>k`5py2+^>w6X4L-QjdRT&$#9BjlG3vl%drCFt{W0>JayUZPA6}#BbJR~V?V+5#%u^4u zfD{KvM#-RAzF@wQ^&6@qduEmsZ&&34H&puG&iH~BsRudd93v1`yqD3qNlqgypl9xZ zf|nzD)1`MQsCz#kLE<=LA`hA;ex9{yz6fppUMYWEp=TiInfw$)H3!22;4?a$`9oj6 zv(78uGbekA4B0trcW0_FT#m0ERSCS;^^F6}#CH-sYrAMXxF>m5`a;#Q->D%VH^uM- z8F1V74T$++Xs1@+OU9`OSpFSO?L`UJ_EHY&;G4+ekJX!Vmz~T{a z+2Ry^v8Dcq(g2%A#gD_K=|wx`Ry+<6FiKJ3aPVm8iUAlcW{-n*X5^F^d6%6qy(r;& z$uJ`^(#IM?8pchaAhgel580#5GbH|%nGP#+%YUWl^^%U--p#gpklXdi=MKx^@MHsxjT0|^c^|8Y z%NfX~MH1y*pY+L`f3n{+RM&Cgv&j+aXibBya* zN1~Rp0(mEKc~5O?^IW8}Gy@Il4n=qqVOg7VeBrL5+uXH;vt?&;8Y6h8Rtp^!W;ycy zmola2pWyQ}net(3S&qo+9G)+BLSHQNuAQsYUP8%i=agRJg?9EVXum&wW!LDgOzM^0 zOSh1J;t<2>=11RbW37BC|2FwDgI1r6wmccynzVDq!Qik{j*c}ek!bI&o0yo1l_saf zEe^|~ZrtzAcy=Rm1+VrY_ICsRW`aWn?BDqP5zer0d`ZvW4fqoOZopqPZnyk*em}hb zB%Lza@V8}LPN0^PIFdsE44 z@n|ldv2ywUZon6Su-)Yo`$q%*dPSm;G+x*d=N#DKF&)02<=+hWGJiMVW9*aty8)jt zWfk!s4EVvym&$aG@l<~^;Gc=FKpP+#5vM!x{oR1i`M)vX3%Hdn{I>!AKQ!2X0Q>+f zZG3-==1pC0NO)@qXq#?5t7JnnQSilYCbD9(GQqRqPO|m_nM6(E?v`npn+8ArEN$7? zx3=nCmTLN_t3xxX3|!)hyr#cOzpCeRaBM21AwvZjTb%Zs`RzaUyflBl&;RTPd&T<5 z8Ior0N6FQZIl92=3uKuZP1o@4%tbO*CJSZvu_uC{PzfS5PluIVd1 zib&UDA{=!~eQ%1vQu&%^_TGo(rR(3DG=zFrCHNzP?j5dPwpK*zz6+RN@mdLCKhPAq ztiNQa-GP7+CtQ>s7W`cJ_`4>L;bP6L?trh1Yq$6-*HzUCymSzI0V%h()*b6F3%BuQ z*Epx^DnMk8KAWp+8%MIh=y-#}#qv<0({hPz%~Zfho6x%JlU)5QK1O3Yc?f@*MqXHLdqE!51(^CS6XPS9d`g7Re&sS(tH(D#>os(e z9NJ`mFWHSe@9yF%xr~|o>|1BR+Vov#jjrcE6Al(f^@b{dH{jl&~}9RaO^a) z=#6{sBA-WMl*2x{e5BGeKKLiJGS7J{&@mF2PbagwVU?(7L<{AVh2*%0+sxn=+)zf} zX6@xQ%whR`vgRO46O85lG(7B*o&V3_?+Rw(riEo48(r5za-{u#daOI_j$h)R^OVwM}hKf(@rywthnBJC1$?s^;)nXW~{BHJ)L$;7gj!92>54&#LXQ&*`V_LAy~?^oGiM*2{{5#HQlUt z4iO@6k07*~C;^x26-`|D})M6du}K-wE8EYEknQM@RSP}R1dk0 z5BmZJTP10b_BRLV6k}U`Q^3}s&@xQp@nZ&duV$3zo`rppZpxHxKxO(WS3db( z8`vmwTu;|Gzg03PDC|=;S9`leFMmLn?dK@8!6*}F(fBI?^G7_Na)%s4Rr(7UXTGvi zgU?dVmIUOamgmszwz}UUKJbt}m-yYz-qjYRzKvg{cV3n`@R%xIH7mwCwm)T?*GZy9 zYPVHzHZCcNfi5sqWk>kk28l(D`E-xfUTbL|v}x*>^^S#>KD1|HCA457MW+qc84a(N zk!wn%x)<&5@WZg+oy!R3TV9u{{oJKE8amknsd#;(9b6*%Oq3r0sNGSyaq?}(!Wsed zN#WC6GYpHDK|y$9ES6ak&5NjGaS-L;xL9?QuT)}Oht&8P*!6Nl)l&dq@$^mcwT1{o z!9QRfi(ZzYd}=Q77S=q4dTG-Q^@{hlK{|5nm|ptA<%(5Rx2#9m*fY?B6{Bd-+qy`9 zE_3R8=i4vcprQ!`S)hlOz4{uEdG|>~+tsFu2qGt}O({_*j&;m;<{`f4135CxCxMffOBi9yqO){5xyh+HhYPv>?yakNbf4e%^4jxV+Jnk_U?C-ZQb8|oh&>{P$a!e)!Z8G5XR-K zcF-!-iVDwyEX#E={KZ=F$QDp5R?&GVyL3cYjwIedbT;{%imAW4>{)lxcDbCDzgtFL zmz&sAVo7qH;cL<~W}cku9oF8TF>CQTDp;=FdGd$1HCxh1{qrD)$$}q~=@mb6srJU{ zwvrU~e5~rKu!6~p*tW^UOFNJxf85oLgCb)k6-|iqj|{E!;@n>6J$Cnwji3BA618f_ z!|R*$IR#BC5)0g=tjXP#--oq(QY?4zK&-A(<$hqD-@6Wie=T zdVQrISK(P545UPeoxZt<-!OIeSIG6=BN9_%*Jsz#7hp;+>gO90k`rKmJ<^CgSVi|gvt3*Rc~L};|s_uB+>PD z2Wvxez4oI4)52J5c#y!&!>TQw$w~;;G&(iWpG({?#CM6_ZA&G2VB1%Bv4 zTXPCaO3B8+sx+I|fur?YGLPK@a2nnr5C=d;N5ZXF0VD=kJK#jL4-g{a1PIk#CGeO? z)rELK11}6|m(Vg!OI=4v&MN+-J43}bC3l@SW1Z?24ShcAp|YN2S*|{Y;;>w=J<(pi zk?!HX3C*ad&RMQekk8$vnx4l&b<7BBf(Y*9dM4LiWM9mBqj02}v|4eS5?`ggJb*sy zHVel0r>CBJe4`gHOYpgYWoWDtgzYUz$40=xZ@?u$LDuT!MP_-?0hEh*fm~PiI>@5X}EoW zc+)vP@j1PMsRIQcOZ*6&&$YWRclg~EA9*~?@VsvdyFL`bI(c`yi77HlcaC0wNN<{uPlls zN_E#NK2Lo#LR}BP`m{oEBdvVjNYGHNW5jM+;p<@SBk&W_eyV+3Q&n;#lQ6G}xWk<- z%vv<=2HlGra8>t?n0Jn|vqt9md4nWpHx;c)jVAHi7AklqS)-|n5A^q|%2^!VTtRt7 zsE^|=S1gI4b6&rF&EWo?P~_A^hoRG=UHjf?>Kjdeu08Fs6yvZfXc*?L3>PyoZhuYX z0?d?@&UT=ngNu$K@>_r8omla;@t|5ACntzPRH<>--S*{ z#8~&{?(dg1HOIT3>NNNJLI3rJ-Ji|*mVzd6VcV;%Q%rfy7nl;m!a425YFf%| zr~*XO0C_iL?Xo>O3*#|a8dZf2M=FOA@!HlWB7_@5JtD5tiPWt*d>?Ch)V{5#xD^P^ zFmf%M^<^<~WM7jm6H#zfVB;tq{z$umh1M0)rnRL`7 zOOiPE0~!~k3$-nnoc;I`J6@jrhH6j{cmq+}?KEOh^cLPN!GGC}F@>nMDM!v^@}zTa zj_%Pb8ozImG%M22;DFj{NMbC-O6Wc-9T_fao^<9a(|rkPT#aY1xCz>R`H9L z2=SJm$U>%F`0}`P#5+W%%FszvtkN+2y$Kw#dSk+&IpZPoI+9NHOds%sX#>A`J4G0# z`1!faA#IF2hXGGb{(E!Xi9I^*2On!6DB9HLRO*1&R9?%W`on@OLD3-nIR+76Rm2r^ z_*EWH>FhZtx0q%X8y5zVWe(+tI&N3x_zsp=W&80mZG@F!(nYi93e1PKGH{mq^*RBZ za_DnFt$vcPR`qez#9a^c1Nc(*mx+6(MS3q*z+F#XZAiRy?1?voBsQEks`wW3$qoH& zBG}U%*9Q%`y*=AQ*3+ao!$SH0sZyu0a9Uu%y7I67H#q7q#?*hM|C=)POYp05!yu>o z-_qZhQ~#Ks{S#^RZ%EUh@;@hBrT7=J>38Y>%Cdi?ch!C~|0~(_G^uHRU7$K$JEz@9 HXDZM27v+qfB*n6@<&hs_z!~w00EE@Q5K+;kQJr>`3nFb|Npu|02uz`T0GO=KmU)r z7!Uve%0J_OyUGa2N{EUmDbvY_ro{6=4>F*Lyz>7DiHayzhwHa#;(+jh4e*rKvCNT? zdKCV66&YfeqiNsruyc0j%vAz}eSxe{79pdFDM>2gl2{NMLr$6XMwcnzC?#qjKyd19 ze-FwPt{YE?f>RrV(lEC&s^;s(QEKcWJUx>3s=y(K)}p8eIY}29ttt{`Psb#(oo*Y_ zTSA}_I$QHs3QnxD7yNJ+v$-egB7I5}C^ z**ej=+gML0E68m!AdKyPQrdcKkR3E{Lsv@95Bu9(h>Aq*!FJ5F+}mGGxng}>yE!0_ zm%<{5oBNa_?QZ}2zP9Du@7vVs2dzjH!50Eviur4%D_=YdI5%)aycP{f*nN@3dhz7% zCQ!Dj)-uD}jr_rQ0sr)R;=>utI2I(d&mkKPe1dzkBuzQO!wrg)6rga@pD)y1d7%h&Xrzx~etkpG{JI6p2E+pe1<^n-)o5p;w{Q>>`6uG`tm{0h(Y` zV7!lDdaNh`s6;8hco{kn|NNT&w|Lw?b2rKXUzzDPN+D5MWyHR0AX&Zz;Gr(9z^Ux+h9+u`e28y~Ux#D8|gd$qDV;igmY#tH&B3?tRq^!q5*?1r&c#9&j z%@-QZ2lt*OqPJ;(U?M0g*6UmqX%R8ox6fZ`$-LvENS{8OH4HdZUcypIX_-_k@{gLm zCTB0I`cib9#|4(sY9~x6SJMOPJW1iQ~PFElX zXlguPr;DT7;*^pP#39V*w}9ib4Hr7*33uv-N3Dp~`O$bt{}RN_kd2q%ru^pfZNOGB z^ZIlCtgQ}~i(7oH8(-#}~r z$G11ry{E%g25VrvmL~QgD_$(7`oG5;wYH&rCw?UOq4-S#A6khpV9~i+YB$}wHNakF zzGjE>&tcS_abj0lX@3Ed*wAN~apNbB6|rf73C!}M4H#iFz(M)~vfKP0TSQeo+a4Ot z8#UCCBNb~YO12SURS|+$7Z3`;KmJaV(JjpTeL7} zHjvl!FPw%pG2-hqc-AauD%=C7!yuaA3UVSA)>^^Qg1PyU!c-R{%4Y^Y#I4V2AEU;z zcnH~zg;yFyO)9T1U>;taSToDdoGjcDX^J66V6S1UUtRFK1tlM0stR`qk=P8y5(b-+ z&q-YAhN{WosR(1T(6JsNzuY~8djUY}W|~2&AyzYkV>f9kWrV6EIa-kzQd%7QR^?lB z{N$CcMRYc*prC9sEe(s7<4L8rGUcLGRon^3Q1qmb?2MI_fYRU&Jkz8tZW4YO^lYk>M6Vtp<0}PE9dl_yR zM|H|v!>RPenPJ6=t{$A~$uYNt3X*LY#;fK4p&%I31xaHiVMEw6YbToJstE85Ks+2J z!!+>h_CH}9!0sE?jn>`QA?_Ob3L5fZi1!(+?1*IoQ`HsKVrC)1J(FFcORSVel(f)| zue4Wi%$zZ>q>A1kQA3Z9vjU>oW+gB6Vr4~o%=A1Zd*G~=+V-E!v{Cyd&X#{`VwW7a zSHXhCNUWvAPn%u+IHX2?3wFs3QLxc(i%AR-pTlL(6G)GgOrt9`_1K!_&+lOBu#NqF z@Xr<{>ai%WPrbGCf91ME#x4Df>*~72eJDeFPq=cDZK8F{Kdh{`XYo#qiZ)WeTPRd+ z(5a`A!lGJNW9O?bJt&D+LeQA^&WE$X%|gjvS+Jy$9h$Lz(jbb-p}eonA%D%z@7~K} zU$(yG6nq`8aOZi$(e?-@7Q?zQL9(GlHTDsD4s@hp6_ZaXOPKmJZ2MeN?uKxp+7_{# zJ>ceszOo~li64bSe}RuhsM9)_QhWm6W1wgp@cZ{^{8yVUK<3+$W&!|+=Kuge_~$hK zyWbca(^(ogwq%)D<8CIlPBRY2T5L8LnVOEKXZ&O9jLc2A%%f9NQ#+$JrlzICcRBMp z9pKJ4%ift8%bI+imp)aJS|v9nihK`>@$z^2`t|zyqQ2u)`hM#6`ttfrM1O&rks1r1 z?2PpFAATuAK$*W}EEn_%YJRe&j@n{=Hh;>LMfp_)m4ziTWJRA;O%1g*BU5d`6e3eC zErHbQ#u;Y2TW&cBgD?1r>3B$MfzSYDBg5Ta5$B6o|LH<9k_r=?QGfF$( zkRmeAiXq0kV}ko4gi{`@jGoP1?7q!N_4WD7_|RdWH`yAS3VwAMztKUj{HU_Et^a8+ z`|wm|Wqc6JzYp{UUm9oD2T$ajX{&k1dB3thoA7L|e$}Ge@3VA;euqqrO)ad9j;&5# zL3u~?z8Al#yVF~P>%((1-@70OZ@(hHzh0kTVoOEfl+DB}3=GDl zyPBtdNY8ofgM&`C*S+aDa&&miT4J8g{dqA3^g^`c&Fj zDr;2JWJ{&b7eG96vXbJ+IO{HSQ(~g{@YSm6cwQ!}!UrPFuH3a2R;BBy6h^AmRPwl|1 z7*>?cO=b;zLWpCynu+5_BG7*Gwzif%8POt$aN1=aCY@FPIovX_r_dONg6x_aV&PiN zj$Yu3lGf#!g%321Ja}1H?-z-Rw5|qwghbIr-Gs4xbmSj3sB;42K_?4w zf^ocbE^eXgI=>={>uk@>N`&1MmB?y&UG>_=hrM`IdKETp4JSbG-Z&Lk&NVU3E- z47Rb%y+5Kne?mlnx*>`_VC_7BAcDGQQav~nGK8%>+w(|#IJ3FXl(c?-G#kMf2n%UBv&4Q|=+MGsncRVVbNOg_0Qt9G;wz5>H&N(kQD1(j`&J9o0C%~(K zP_CUt2VsG1f<(L5Cn<3o&W#q0`ZJK%buZS;z)7EL%+F<2IEEt+ zS#qZ#C9$+ss)go9O3MABSO7QLyL#7@?bf03>oU?UN6xw@~P)9a+RyXh&h zjV1h{yCW-^iZbxJ)4Ovc%T^Vw7^_Z zCi|{G0Vb4oCFfD1f_)kV21}&SN0dD=f21jKM={FLqIQua)~&(^1B#G!=}t@$s0j18 zZpzAAYN)Z>%q$CE5C2HNS4{GszgfQTK-{M(X=@R`1<5#tb<7v8K_-5b1OTT!uw$69 z>GlXNNYm-LwZ&1D4qg_lR}~M1PA3rrBpa1v>%bG7>yT+8Xkg`V4zmOZj!Mi>FCL8k zB&Ie>7LxPjFH3rZ_n-%5@vTN6P)H0@4^vj%aM8=}`XW)22l4CPsTKbK$5QCC5_1}g zzn}UX$g5mRJRAY{GUkF#G~R`>?O8_SRT0*(JU(Q}HOv%5SlAu4M@jdTe>S&Ow_xxB znn`$!Y>>tjJOawT2pu&JW1838o?_%rG@@=P$nuP2jqkE@(hJjX<1I+XQOj6k(!qQ$V?$7xeLhrd8%ZK59+2Lhr@M|h-y86>u z>QsW$Ka3@S$(LO><5y9Z;%g;DZ(yjT7{0}QY*7)6>FZuc{x+wSx{Dw+lV$n|Dnt-v z!#d$W%bd;m>uQI0Lw}!nu^sJaP~5;CQyW^^l6CxMGAqNw&%ajy;sgS+(+xJYE(~7W zr3^{*9oQ$3T5p3%L5(f;#b>m4Y!}!PCD3vSPUd>L4<4c^aZ1@dkHr>0!x?VDvH9~n z9F(x~S}PM{8%tSIX5v~{@uADK&`rr+<4~@1TM4z`9hUgMDIMX}uGyf&$2Y}{_2!z5 zYnPn$Ppo)Wn{1Y{K#adifBP1A#+2(Tib{!uwaQy`5q)@YqLEMK=}T2Ow=Q<@79P2? zO4?P*KY%2$n)s?aX{@+%S_t$P#uB^((H?`xg=y2)h>P0o)K)}#cDBsZr)38XBkaRo72%ti;ZZIK9=M_wZj(VgSA1&Y@l`^g*^9vzc+@yE}T9@C=8Eh{PguiP{E?W}o?5obIShXA#xqI@!0-llumKfGQ-_}eC9`ODR z(%VADT(j1F;;Ywc5_ek|Oc=xR{*4Wr@Ci@*Vz?en&}diICf64BB}w=K;L`#MNvQFR zW^Gbty7UrEJg-M4$pn{ZNx(OsRH4YD!o=D#aNV+5MHZ-w|5yj_7;!>cz+Lt2Hfj}Ln zU?}wZMEX(jK?o@`9-HWzir-8*fSXRK zR+imlB=a_#zoIJXE_H}_rHg(HQrdQglU>CCPVmb<-#gjD8AHLhCT&R^m`uHXdR*gj z-RzfWwF*?#_R0GlV2TxzJ|KvEt=giio|j_|=_UXDrnv7IQu_M$)~7 zEOgdK&D^Zcqr?^TJP|-BL>hdR=5HQ8wB7oJIq0oO_`ahq71<+A z(B*`l`v4WThW3bWH-C-pAfJq3;Vk-qsOLC!-JBY|e+TnE*^~#$5 z8sS?&08&YSQe3idiG2#Y28F#w*1%@Ai2GYXDdmEb(zC^4a5O?KPrL?(MMa}<#30Q` zUQ@i3THRk3NGXXwj55?Ye+8~$aRFrb?hrlC>%(GF_KW6eFJYRFZl2VZySzk1kpU>! z+8BkJyTk#Uy*6xVbwM^uwTC}DJbV2R`nP7pWId#!XO$DUgX@BU%&)jHPL6_Ct)NsG zo8SBmg}m@P(zYD|y7(#M=t-nZbnxQK1%p$X;w)IMeRHsUcL=8#Na+D~S^nyWyk>l| z`y9!8>fJOgRD|8bD5s~~_p0EQiFCmeY5SbGRfT;a0-7f?NCH2dApBI>WQ*uP_0O#X z|FPio=L{+!qq_o(^A<}fmDRfxtK2N4(7;6x9saQWr;x@#baRGq)oH)}E@r`euV{#l zGO!I@O*t2L=a2zgt>%NO>vp;aqNap4Wq*^99&*{hzb9@5+@R z)5fsoWw_s5SF=nTj9pPd%H6j2%}2JD^#LfGnYX{Rk4V->_KuXQTxJbudag-vMccT` z4@m^aCUY12M-p>)cY_)dgrZGJ;8U4wIh2MOVUU8}H0P%f7~5VW`>`8oeQ)31<~&2CMWa&KU&3?#vmKugPtH%@B7%6F1w~4AL8Qjv*io0jXwbZ zCj0!Mv_O)?HH92_En=0eBDl40nl-S`N{A}j?@JqQM?JyS6Tzxd$t95OW1X;bJC4ZN zvH3X~PGCEZUQ-6Z>yC1b+ze~BDK#OziRO|T!Q(*nI6+nduIdz%Y}A_}zZLRQ!Y{#* z*Hp}*axJPPe7^eZ?h8;BaH&e@yHo})2$0qM&OZ%rmB=~F7iHJR;9DfQPm0VC!c7&e zj1Z~n1-#v+QJ2ciS~Yn!s%ngs`yTwh?DJcnE@3Hj)YzI~rnt&-`9RHz;F{Ap+?!qx zz63o*hZFY^WPJB#A`2_^fs!=>}rQvbeLF>hN_ z2ps8!6s@|k%Ss^i3N${#kXCm*9N->KACtQSJ;PVQVDSWZ^5k6hG~gT7efo4Xlg(HF z1;JwqSJfdseEmv~Ya+*7o`oBHew>k6SFJL2KVmPd$m{Tgj;bhoCBSYw$|yr!jQx5jgB-E0~TmpP_Q(f z6&Gc{W44IZH?0jd;lGirqe=|!r-^-F4?Vb`g-7e;1g}3b*67*rWH||^p@%;Nc85uQ z5D&_Q#iM=vahkb@(B7k{dLbdSnNnp!{6g~;1L_&e$0OFT)>U^87i#D<|4<<+*5JKz^iJNixhgYSV@Aa6VU3?(AJ9JEF~!>#T^X@)PD!eUzok3zx)L1s`hb>OB|8Sd^W#UE+S7!YYd*CW9iU6HzkhW4}6Z zCpNk4{4|=}&m!5JN%uM1j&u%D1B#^BA<>l+8I_{bprP2Z%TQ$EG84(t8ArlQfehY8 z0pvh1%phbPlu5dgV)cWFW;OW_ zf^XHS|NiAX_N-*jU$Du@_>;ksq1b|bsNy&}{c#jl!8kmU0xV<7%Z5?B(#eNM{Q)72 z2vU=PA~rL{9HkXBwZAzM?DXZUc`mJV$xCPktz$Vj{Vt|fiXbf09*^EGon-RsA(IfS z%&%^)LWizEZBnXQe}m{5`&K~6>G$wU-F|=W4E^E;M zkWEI)w}pcU^!VG}^1WPNs{zrl^^b=r@c)AHcw?^)nTyyCG@WioK=HNrhsG zsqUq2r>Kqxy#X$xSXMTzX@*Q8*V6Z72_9tPsN${%Az{|Hm=V8oHeKU>Z9hSWZE4iJ zhVpXn%0Yn8&u6SzG2Rs8ND?+)0NFm@bM}=Bo**p29KE=4N;XB@=n!b}aJyX@+ba4n zqAWvtL#YGCfNgr zoy7`%8H~u?I8W~)tL3j+lhW|nbSWmA#^j2TRgZ6|im@Gf79cf)BL}t_(EcIjz-#Eh z?<$-%RX}NDHr0OWtOMz1CBc4fkU9E3fM{UMYTruy9p%Hh3oyD?OwVACJn$a-jx4M+ zPB#kl`z!FfD1!LTD)Jc-MDBWqh$eeq<;Atiih2Xk#(Z@g9ni*NFE)coWj1q8$*-1O z)vC2&Ck7>JBzC@heZDB-(+~ZSt8qa2b6TL{`sdS{4sK7bh_|CkF|Qs6+OY99PgS51 zmQEP=Xij@sq?_lKaJz~{34B?k5XkDw@J}|9sx`{d!0llh22IASycE0uo|ZlFs*2uP|#&kb^V;J-iVR zGZ6!5sZ`-f*iVzW+)eDP7*5_myway=85a#AWu6!?rLUeYFr~w8VXPQ=NHbiRJ$El$ zm@`goEs<}Yco3a$osZ4D99o?tj*C>&SSSR4U6FKA?w)pl*FZ!P=_`@zE6V zUWT$z%Z{RQLRO2PWhyP(p4q73ouY<-_eBabf=n(#s%JdVflf{W082|m1V9VK^Cl(# z=F`-%6CDlWdC=(b*l~G(y>Qz2s0cRu*b#w^Qa@Yz5lcwkDNB=>1@VU5x=5rq=qZV_bEN<2wp1E3V*fE z)SB?A;#c1W>=oSl3-$teL4{QfT}6(NZD!Zb=?`ppf7$}OPud0`m%P@m;PvCw%85q+ z1z)p=WZ;kQI<_A|c-7VxI55$|n67QVvqBMI7rnFS0?d1Nt_kHSFs@S1{yTj_GL^XK zXtNlDqBw5HsmKs@Cs4i%yOgYWk(!70W?puCn`T!$}JT7Ioa(5 zHBGL$0$D3BVs8!al9I(*P2Y(~hwZo?mx<#MA{W-(|mDu+&3L!-U54i#YhOrWMD zfceKmGbiF%z?#|R0WIU=UN$ZlXke7AK-B-Pa=oEh|40>t4u`g3YTw>vE&FmE@caXdUdW;t3(lnyq!qq*b;^-_{qkU(O=ai#LS_C!Z5%OP;+dOW!UKt790= zqen!wR-chK{;zlPySFXga&a~(aa=?A;?%Ld<3rktU|PgwqzktWdPDhYT4{~LMND@= zctp?M8;QkKMLN=#ZS)4#&VwQR<7*fQkjzQwS?vcH@kupjHmVADP}ISnfTK1{<2DZp z@tJKlC7RtC)pGtec z*dDLl3i94?W;bodwS{pFA6uA^n!s{tZ<}k9N^VjSDq;j!>QU^T?Ku*qNYVf{IZVGE z#&RmW;8X+sVU57G*P+7s*Ub!W(sG&F% zMWmzJ@7rd>Buf`{s=qfPl^|p(2Q1|%X_5gY@-9kvmkjOAlI7i$aQo;;Ad5J?P>H8q zt&EMX6)ZPNG~`|vYdoQ&tsfk!z0A0yfDxuJAlJdIq-+5V+f9h32wKTcf-VcaK;{rf zji_@in_z3S4HU??^^C420!CLsL;Lfpy^j%Q88}U&o*T_CA^zD#@64apIg8#%b(e%A z9PgLBk6=w1|*=?ccsk@t~E=e068r zd<$(M{~C)+IGqo|U2b&2TX({d!>|Z1a~7ecvfnW@=L$%=U)CPQzyXzFbL2qZEJN;X zyf^KC^SX(Ivth>vr*e13cFwl-+TyImG+HPEhF`-43+K^XT=}pd;U5?j^3io$f(a3v zpzwBEzsV_QS>Hu0027SaHt2L@HF*Y_zUunbdAIom$oHC%Q#W&cHpfHAoL)0AGjX@u zYfZ|`F-_`}wKJzz)**tIctXWTo;OU11dZ0ba%?+|t4|7GUaxBlWs_mdDlc`DlPw*J zd%8{HE&|!QJpNfN>040Jt-vp53uM9M-dqcv zRA_0F_;moW5Pt1`Z5IDRu^30rKMq+yjX%XDC(F5)u9QW+J=oC%N{09VQnOt(#)>%xlqJ`s|`6U+nDQ10vXVz@V%U-*9q?4=3#*R#zgV35IL7AhVnC~OV4Q)!9`(Z0d+P}aP{;2B=p6Xp6l6Sf) zj+S@1s;wPtfEKVT7oL>e7IWSyx*#6oVWpoo9x8&-qWu>UZzTFVu;#%%$y~{3yGQ&t z3q<+HRg1jZ*q@v{AetkQBYaP&fOUcw*Tijxlh~S;p5zh$Zz9CPH&uDgCJH^w5-@W) zPHP(3j48Q5wU*(|dhNUJK6D-xH7a&H5kW@)*93Ss9;$VMNR~i3F0#y>^JzVykPV1n!mJ+gKE=QqqKMCw=)g`~$W>6xZ>CK^<}*0F3q_%y z0g+QCbNw%-T-Z=}re=QJpDEAQ&%khlZMJ!H!r=p*#rlnbCG42&AbEe=@03&7;Zx|Z z*-8V97MWN*a*pR&$jM-LWS3EE1}LQZ(tE2P1ZsvAU@R41CMo0yJS$B(U2~%3iFfgd zcVYK;>_n(A$;UY-1MTZT2|(EstqfOou>#sKyu5ATG zJlMlk*FS=`_($0w3!Q1WNPyj6sHII?1M zmqk~qf|b)ADwyS$Av5cbSUN-204B_`BGA|K?l#MVw8MK9hGpkjs9q`+jjk+!b>=65 z9i6K=0vKP^m~w^)mHR5~jG|BI@7~(`!$-{3`%+4P=e)6HjOB61PqbO}P0k5yD#>B{ z`ekRSSwh4-`dzIp_18gU&eG{ID`};=PxqHYvvoLme5AOHYNtRRf?vbOCRj+Ghu46W zIVx7>R(X?#LWYc$AYSW?;Q5hj9>aj{>;l_4`r8FL9pUBh(L9~FV3uxsr*=wIp-z-bYQ z3V8^mqzY{F{pm*;K)TlTXe+)vUiPDf)(=%lAdhUx(=!GZ>he)q_Fh}@AIzu)n!#W|~5W;*2i1rqaZN&Oo0CmoOj$64qJP5}0& zP9_JP`-1olj;)11troLxo?XxPat@4Xp+%aV#a83n)rwK4_7v4im)@1ocaSWe%4*^@&v$Z zg!>$ug_-jcxrFzoUemHHTae|z+3H#V%j-rR-y=L;eL4WZ7=j(@eJ!VyeAMkRQG&iW z=dwyb93D`c4M8fZuzr{LdBV|7nr~F<$l}!aJrCrxX(CYwjIC!NcG9y7YvJHR3vfiP zx{!<#4pu0I&Y%-QA}7Kf;9JKGb>2-&N%+Hicb1dS&{jaG`0HFh&0VjV`92W1am>Do zD#&|jg{`Qnj0KaB*h9=VNJiq?+UX|)k-yZo$7Y{pEjZ+*0E>@Bd}~OpZSnIXzs??E zPVLXx-f4l++;^ryxIXjG*oPamdVv)cx$YX8C_sgR39n-3K(0acQi6?j$AFo8O5skw zFG#rW@nO&lPNxYRKH=coQ3br^K(wHvLAh;4M|9!TaEjQEp8qJHN8eO*R<>n|$J479)U1^=O6EukoP*L5Ww;?I$ zrcj_58v|Y)C5Ut;5|l`Q78JgofbWi~S3@0Z%J}|%D)Ih)<)7EC4?Zu=MQMC9gge)K z>&u}w&&AHpVRVf1>;ob8e$`Wgxg{Y6D#@8xW>-V0tmA_d7uVW?a9A}ga!5JxacH_= zD5=t45zULl;NUqv*||q14!S+p2kEvyh?ZXN4~CVKhpm^5N#85Y;kmo#NJua!8pGt? z+t6-H_ph#rW^en7OdrA&XPJ+-;RZfABf3j=}A%9tkAEM`2 zNf4rESxH#DM=RsHocKYmh= zwbOgKg8zp)2stM)ZP13`MeE0v^+oIch4e*hhmG{$GY3$Q?JP3)=ek>O&xGU22i(eeIuI5J zCsnMm#14J0u!_I0C4(-am^xtA$JbX=n97>DBx>v`Z%3%_|l@{ofciL%D&vXP1)B5{LGrCLR6juINi^>Sy(;1*27(;S^^@ zcASEUeYFQ;-2S5R*?jj`k4VS@P;O$E?*-gZ=}~W3%gwcX(*z&|rh|pdh=BBK{Ck=9 zF?Gg|K*!gDguZc+Y7bK2(=!Idatk>tvX{(kR<);P5qaWK+qk~gS9akyxoC+kA64dU z8374xv2%LUG9A#fxBMSVZuV_}7+2GE<)LFuR=nw|QFfyz+S*9ig5^wNDXh{n6TRNj*En zwPl|pl^St`G%m?IiP=JJ^=c9^81PUBQVPtBp9i6V5{b*K3>JaHDy2XPg4s+W6~zId z)lGGqGeZ{550k?63k})SKXoqRg{v~x)E6waaBiCQhF(c#SC3Q=kO>X`zNqddBBy6~ zEb>pxlSYMst-ZEkPrB-y0+GHe@L7!#h>$!nfnU)R9J^N{*?TNYdJu+i4N!1F=>{M@ z?Om~yU&}e$FLXeqn>adYzvRS#z%>I27-2fJaCShxt;xK8(Qmvy4@d0{N{ucmU&cl` z;Kn-2{H8g3l5keiri^>t%)PfS#@dunm^bpte#GIp1p*;cQxcL<0^7npr6<%+#s0GZ ztWs`R0qnvg4Xb}EvltL#H7Rv8q1yai5^|sTossD7g3C+i&0Q=b)6%-Cr#4oA96*^u zl0d4O|K^`nW%xtTO4%70HY>c-dbj1WSRRynG)89s*i60~J1n^Z8}P(+KEH1aX-0R` zmS~QE8byB9LsAn=NU8qr;KXSXPEwv;7IHqkfv8@w6D6=$KX+ZaM$~)>DIpJE6dMw> zN*K)sz*2@La zL~DquAg^JGUfHhofglIfF*7Fyee2^Q=~VPBz+#3zNoU6oiaRv-{$Vvzb0y456CGKV zNG0;)RF;@4I<)=h$5XQSVs+gY-G*dj>tLbFvTQ7yM=QMmm#kKK4|&)C{EBikwC<$H zmA#I_hRiU= zf{?%{xP%t=cvo3z_0W}8qBiFq%>+^>18RFF+P$*Xz|zrd^MutIRrv_2SKS2+D^Ul;nFEkx z50n4v<@G{nLJcFj7!xaJUXlM}4!uiR{Ul(OQ?E&)rZ{EtsjX%673W0PqoQ#6T#-c^ zT?56RDs$pQZ9-ULx~p+f76FB--+%I+>|a()26i3cFGnr8(fRVN4HFluvdAbK0bW_P zg=$gmB8$Zn%44BoHDK_gNvTS01ng`tCqkIV+1Tm$c(~WmR~6Q9u573|FF5rGv~cK- zS$)y9hn8O1iB4NbBJP0nM%`=^+82BB$m?mU{iR^-32I?Ieah_m+(uJ#iP`8@I*EfF zVo*`-!vQ!J1R6RF8>km96VkJUVU!7vY^BbHW@s1$?Cq*f% z$dt_z`1Y<(zIpE%a1(a_ru#Uds$nB;Qg&8P;xM}FhD7eery_S!u*~D)H<3Eqv&Vsm zwcEy7=+uV*aizij3$g7msyCHr8?(-Q17%Z+3s6QkZ$ZE#U7`WbtQ%x7pW@=plB^AU zl9*{WWMtW=V6Yrz4WuHIbt)!0gAV-q@b%GGzJU5S8){30pnCcOPW1xqQnAd zNyC8j#AO-%BvX7fDo8ItLdW9qbrz_ z0Eb8sLz=jGETBWg&ey`&*`9?_Fj%2bCVYzMC@Sf^W<9G0&pN*7*;t6TTHv2%5NFf^ zZb?M$1>lvxp6V51<~*Y59U)(b<&3!BLWH9#!2*C;KP4-kjcv=u^ikt>W%ajfI@{|_ zQRT>G_P6r_x1~PY>%&=r7g5o*S%mF3_|Y#0p`sgMj*y3vFk9O7uWX-{qoxo$!6Jq8 z+j?`Xd;%4wFXE+x^)_B5uZZ#6n~k=eAXYbRK}cKG@%j7=O5Q)|GX<5z(<=o1qAHcR zUZ(J6(>{2o-!f&-RNTYpxPF+}!`!mM5`B-VvVI=lANN{|B46Ej(WXt~_p#e+lABWU z;C_ogRlrR(f3=`j%7WCuH$=v1^Lj2r>^%B{Rd@zUVvqDuo)hYU;ZO`iLODgUZxbUw#U)%(m5Qou zrOHY~wC6Y-VeJS2B5JC^j)L2RP*onZ0@Kln1gexPt{*y_PRai&AT`=pt*dY!T_Q$k zt3+luR*om_yjz8+h+kbUplL-(@Ody2zoX*QknAq{bxU0IPF$GYHhVi|-?o~0B}I7N zk}4qxfm|rL(Lpa&zk(i2zxA9j0|juCPoUoLaRXGGM^Ug75b2RTU3#v4BF!x9i}QYn zaRyW#(993V9uAuiISIqdyWThm8aZJ;L`n)xg;WVkVL{GV1Y+BTB@#*sSEUHoW(s

2-eRL-#B^rfG?!@v`8> zwcqFJW6L9{^ug7ecEZw|mm&3Pha^c9`O6W^GFHkwxtn1dg<6y=eaYuz)>nt{;L2Mw z2U{D4TSW4&WF#n8Q54@mLo0Ctsjr7QdEYY*i$L}94K^djh1X&dOvakCDYoH3X+cro z>tD*-to6)>X~Xo%h~|@vL#&LB3{*3P;I8^*!<|_BQdo_3=V0abgqH$^i|%#%hx4+W z>NdSO5u2p#&vA$LUzp?KH~eAP{W52%{)r`L-l6O2Ii~l6T6GW+Y^xQWmty;A7doPo z_Vq55|00aK@2KYb`iz|Xve?0WAcc>Lw$$J!46JF&$UXGPxR zx~zZ+r;URX$wz5vbfssyme|DN?5-!9mlp%D6;$Ywfi-;-oI_ zp%^?XDj}Dr>%Qe=f@>Ji4SBABwWE&S2NeVR(@e{3yg9Iku;>n+sFw_TC*yJ$L-7zU zXO+e`A1K%s<1;&`_`dwyGzK&LwT$B3&9x3g^J3b5-TQG#Kj9qVFKgFhTnLOS9l(ni z_bEQfte?hj?(ut_%9-3Z{dg`P+3z2))7PVzUlK=Ow=dkJ$1WqptGM8qK3Br8iD#%6 zbi-4(!(GNdeb^KIzo~og+dpnFv$w7(eNDefXYWFYenU@Rc%%=z!tccUk6zt_5Aaui*c1Ip8O6O8U;>zmR}WUYp;zz)yNrbGr|IiO09$`F*87mu*0OWjDibd_RtR zbtPXe${${oNW#BnL5qE8_p1{tw<3E)h{{lw;Kk5IBjQ&gTFDnk9{^$MQQkj1Pr2qan1i=49 zT>h8*zar29{zrs=^DzI#U;gh={&$$|-%&6@{v*o&LfigR{6Dcb{}z{l|DPm|yc8(d SzdS(yd3gU>A|cnmX8#W&-3)X9 literal 0 HcmV?d00001 diff --git a/glassfish-runner/connector-platform-tck/j2ee.pass b/glassfish-runner/connector-platform-tck/j2ee.pass new file mode 100644 index 0000000000..8859170690 --- /dev/null +++ b/glassfish-runner/connector-platform-tck/j2ee.pass @@ -0,0 +1,17 @@ + +# +# Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved. +# +# This program and the accompanying materials are made available under the +# terms of the Eclipse Public License v. 2.0, which is available at +# http://www.eclipse.org/legal/epl-2.0. +# +# This Source Code may also be made available under the following Secondary +# Licenses when the conditions for such availability set forth in the +# Eclipse Public License v. 2.0 are satisfied: GNU General Public License, +# version 2 with the GNU Classpath Exception, which is available at +# https://www.gnu.org/software/classpath/license.html. +# +# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 +# +AS_ADMIN_USERPASSWORD=j2ee \ No newline at end of file diff --git a/glassfish-runner/connector-platform-tck/javajoe.pass b/glassfish-runner/connector-platform-tck/javajoe.pass new file mode 100644 index 0000000000..d69a7520e5 --- /dev/null +++ b/glassfish-runner/connector-platform-tck/javajoe.pass @@ -0,0 +1,16 @@ +# +# Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved. +# +# This program and the accompanying materials are made available under the +# terms of the Eclipse Public License v. 2.0, which is available at +# http://www.eclipse.org/legal/epl-2.0. +# +# This Source Code may also be made available under the following Secondary +# Licenses when the conditions for such availability set forth in the +# Eclipse Public License v. 2.0 are satisfied: GNU General Public License, +# version 2 with the GNU Classpath Exception, which is available at +# https://www.gnu.org/software/classpath/license.html. +# +# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 +# +AS_ADMIN_USERPASSWORD=javajoe diff --git a/glassfish-runner/connector-platform-tck/pom.xml b/glassfish-runner/connector-platform-tck/pom.xml index 83caef9c6c..d1a6fd6613 100644 --- a/glassfish-runner/connector-platform-tck/pom.xml +++ b/glassfish-runner/connector-platform-tck/pom.xml @@ -41,6 +41,7 @@ ${glassfish.home}/glassfish/bin/asadmin + 7.0.0 ${project.build.directory}/glassfish7 ${glassfish.home}/glassfish/lib ${glassfish.home}/javadb/lib @@ -56,12 +57,21 @@ cts1 5.9.1 - cts1 - cts1 + rapassword1 + rauser1 ./sql 11.0.0-SNAPSHOT + 1.0.0-M17 + + org.apache.derby.jdbc.ClientXADataSource + 64 + cts-derby-XA-pool + serverName=${derby.server}:portNumber=${derby.port}:user=${derby.user}:password=${derby.passwd}:DatabaseName=${derby.dbName}:connectionAttributes=";create\=true;" + javax.sql.XADataSource + 32 + @@ -200,6 +210,13 @@ ${glassfish.lib.dir} arquillian-protocol-lib.jar + + jakarta.tck + connector + true + ${glassfish.lib.dir} + connector.jar + jakarta.tck libutil @@ -252,6 +269,45 @@ + + org.codehaus.mojo + sql-maven-plugin + + + org.apache.derby.jdbc.ClientDriver + jdbc:derby://localhost:1527/derbyDB;create=true + CTS1 + CTS1 + true + ; + continue + + + + + org.apache.derby + derbyclient + 10.15.2.0 + + + org.apache.derby + derbytools + 10.15.2.0 + + + + + sql-cli + + execute + + pre-integration-test + + CREATE SCHEMA CTS1 AUTHORIZATION CTS1; + + + + maven-resources-plugin 3.0.2 @@ -280,6 +336,62 @@ org.codehaus.mojo exec-maven-plugin + + 1-start-database + + exec + + pre-integration-test + + ${exec.asadmin} + + start-database + + + + + + + maven-resources-plugin + 3.0.2 + + + copy-resource-one + + copy-resources + + generate-sources + + ${glassfish.lib.dir} + + + ${basedir} + + *.jar + + + + + + + + + org.codehaus.mojo + exec-maven-plugin + + + 10-start-database + + exec + + pre-integration-test + + ${exec.asadmin} + + start-database + + + 11-stop-domain @@ -316,7 +428,7 @@ ${exec.asadmin} create-jvm-options - -Dwhitebox-tx-map=${rauser1}=${user}:-Dwhitebox-tx-param-map=${rauser1}=${user}:-Dwhitebox-notx-map=${rauser1}=${user}:-Dwhitebox-notx-param-map=${rauser1}=${user}:-Dwhitebox-xa-map=${rauser1}=${user}:-Dwhitebox-xa-param-map=${rauser1}=${user} + -Dwhitebox-tx-map=cts1=j2ee:-Dwhitebox-tx-param-map=cts1=j2ee:-Dwhitebox-notx-map=cts1=j2ee:-Dwhitebox-notx-param-map=cts1=j2ee:-Dwhitebox-xa-map=cts1=j2ee:-Dwhitebox-xa-param-map=cts1=j2ee:-Djava.security.manager:-Dj2eelogin.password=cts1:-Dj2eelogin.name=j2ee:-Dj2eelogin.password=j2ee:-Deislogin.name=cts1:-Deislogin.password=cts1 @@ -331,7 +443,7 @@ create-file-user --groups - staff:mgr:DIRECTOR + staff:mgr --passwordfile ${project.basedir}/j2ee.pass j2ee @@ -349,13 +461,112 @@ create-file-user --groups - guest:OTHERROLE + guest --passwordfile ${project.basedir}/javajoe.pass javajoe + + 18-create-xa-jdbc-pool + + exec + + pre-integration-test + + ${exec.asadmin} + + create-jdbc-connection-pool + --restype + ${xa.restype} + --datasourceclassname + ${xa.datasource.class} + --property + ${xa.properties} + --steadypoolsize + ${xa.steadypoolsize} + --maxpoolsize + ${xa.maxpoolsize} + ${xa.poolName} + + + + + 19-create-jndi + + exec + + pre-integration-test + + ${exec.asadmin} + + create-jdbc-resource + --connectionpoolid + ${xa.poolName} + eis/JDBCwhitebox-xa + + + + + 20-create-jndi + + exec + + pre-integration-test + + ${exec.asadmin} + + create-jdbc-resource + --connectionpoolid + ${xa.poolName} + eis/JDBCwhitebox-tx + + + + + 21-create-jndi + + exec + + pre-integration-test + + ${exec.asadmin} + + create-jdbc-resource + --connectionpoolid + ${xa.poolName} + eis/JDBCwhitebox-notx + + + + + 22-list-jdbc-connection-pools + + exec + + pre-integration-test + + ${exec.asadmin} + + list-jdbc-connection-pools + + + + + 23-ping-connection-pool + + exec + + pre-integration-test + + ${exec.asadmin} + + ping-connection-pool + ${xa.poolName} + + + 24-deploy-whitebox-tx-connector @@ -365,6 +576,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/whitebox-tx.rar @@ -379,14 +594,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-tx --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-tx-pool + cts-connector-pool-whitebox-tx-pool.rar @@ -399,9 +618,13 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-tx-pool + cts-connector-pool-whitebox-tx-pool.rar eis/whitebox-tx @@ -415,6 +638,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/whitebox-xa.rar @@ -429,14 +656,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-xa --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-xa-pool + cts-connector-pool-whitebox-xa-pool.rar @@ -449,9 +680,13 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-xa-pool + cts-connector-pool-whitebox-xa-pool.rar eis/whitebox-xa @@ -465,6 +700,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/whitebox-notx.rar @@ -479,14 +718,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-notx --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-notx-pool + cts-connector-pool-whitebox-notx-pool.rar @@ -499,9 +742,13 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-notx-pool + cts-connector-pool-whitebox-notx-pool.rar eis/whitebox-notx @@ -515,6 +762,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/mdcomplete/whitebox-mdcomplete.rar @@ -529,14 +780,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-mdcomplete --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-mdcomplete-pool + cts-connector-pool-whitebox-mdcomplete-pool.rar @@ -549,9 +804,13 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-mdcomplete-pool + cts-connector-pool-whitebox-mdcomplete-pool.rar eis/whitebox-mdcomplete @@ -565,6 +824,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/annotated/whitebox-anno_no_md.rar @@ -579,14 +842,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-anno_no_md --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-anno_no_md-pool + cts-connector-pool-whitebox-anno_no_md-pool.rar @@ -599,9 +866,13 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-anno_no_md-pool + cts-connector-pool-whitebox-anno_no_md-pool.rar eis/whitebox-anno_no_md @@ -615,6 +886,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/mixedmode/whitebox-mixedmode.rar @@ -629,14 +904,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-mixedmode --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-mixedmode-pool + cts-connector-pool-whitebox-mixedmode-pool.rar @@ -649,9 +928,13 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-mixedmode-pool + cts-connector-pool-whitebox-mixedmode-pool.rar eis/whitebox-mixedmode @@ -665,6 +948,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/multianno/whitebox-multianno.rar @@ -679,14 +966,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-multianno --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-multianno-pool + cts-connector-pool-whitebox-multianno.rar @@ -699,9 +990,13 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-multianno-pool + cts-connector-pool-whitebox-multianno.rar eis/whitebox-multianno @@ -715,6 +1010,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/whitebox-tx-param.rar @@ -729,14 +1028,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-tx-param --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-tx-param-pool + cts-connector-pool-whitebox-tx-param.rar @@ -749,9 +1052,13 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-tx-param-pool + cts-connector-pool-whitebox-tx-param.rar eis/whitebox-tx-param @@ -765,6 +1072,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/whitebox-notx-param.rar @@ -779,14 +1090,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-notx-param --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-notx-param-pool + cts-connector-pool-whitebox-notx-param.rar @@ -799,9 +1114,13 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-notx-param-pool + cts-connector-pool-whitebox-notx-param.rar eis/whitebox-notx-param @@ -815,6 +1134,10 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass deploy ${project.basedir}/connectors/whitebox/whitebox-xa-param.rar @@ -829,14 +1152,18 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-connection-pool --raname whitebox-xa-param --property - user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - whitebox-xa-param-pool + cts-connector-pool-whitebox-xa-param.rar @@ -849,13 +1176,231 @@ ${exec.asadmin} + --user + admin + --passwordfile + ${project.basedir}/admin.pass create-connector-resource --poolname - whitebox-xa-param-pool + cts-connector-pool-whitebox-xa-param.rar eis/whitebox-xa-param + + 54-deploy-whitebox-permissiondd-connector + + exec + + pre-integration-test + + ${exec.asadmin} + + --user + admin + --passwordfile + ${project.basedir}/admin.pass + deploy + ${project.basedir}/connectors/whitebox/permissiondd/whitebox-permissiondd.rar + + + + + 55-create-whitebox-permissiondd-connector-pool + + exec + + pre-integration-test + + ${exec.asadmin} + + --user + admin + --passwordfile + ${project.basedir}/admin.pass + create-connector-connection-pool + --raname + whitebox-permissiondd + --property + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry + --connectiondefinition + com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory + cts-connector-pool-whitebox-permissiondd.rar + + + + + 56-create-whitebox-permissiondd-jndi + + exec + + pre-integration-test + + ${exec.asadmin} + + --user + admin + --passwordfile + ${project.basedir}/admin.pass + create-connector-resource + --poolname + cts-connector-pool-whitebox-permissiondd.rar + eis/whitebox-permissiondd + + + + + 57-deploy-whitebox-ibanno_no_md-connector + + exec + + pre-integration-test + + ${exec.asadmin} + + --user + admin + --passwordfile + ${project.basedir}/admin.pass + deploy + ${project.basedir}/connectors/whitebox/ibanno/whitebox-ibanno_no_md.rar + + + + + 58-create-whitebox-ibanno_no_md-connector-pool + + exec + + pre-integration-test + + ${exec.asadmin} + + --user + admin + --passwordfile + ${project.basedir}/admin.pass + create-connector-connection-pool + --raname + whitebox-ibanno_no_md + --property + eisPrincipalName=j2ee:userName=j2ee:password=j2ee:TSRValue=comp/TransactionSynchronizationRegistry + --connectiondefinition + com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory + cts-connector-pool-whitebox-ibanno_no_md.rar + + + + + 59-create-whitebox-ibanno_no_md-jndi + + exec + + pre-integration-test + + ${exec.asadmin} + + --user + admin + --passwordfile + ${project.basedir}/admin.pass + create-connector-resource + --poolname + cts-connector-pool-whitebox-ibanno_no_md.rar + eis/whitebox-ibanno_no_md + + + + + 60-list-connector-resource + + exec + + pre-integration-test + + ${exec.asadmin} + + list-connector-resources + + + + + 61-list-jndi-entries + + exec + + pre-integration-test + + ${exec.asadmin} + + list-jndi-entries + + + + + 62-create-jms-resource + + exec + + pre-integration-test + + ${exec.asadmin} + + --user + admin + --passwordfile + ${project.basedir}/j2ee.pass + create-jms-resource + --restype + jakarta.jms.QueueConnectionFactory + jms/QueueConnectionFactory + + + + + 63-create-jms-resource + + exec + + pre-integration-test + + ${exec.asadmin} + + --user + admin + --passwordfile + ${project.basedir}/j2ee.pass + create-jms-resource + --restype + jakarta.jms.Queue + --property + imqDestinationName=MDB_QUEUE_REPLY + MDB_QUEUE + + + + + 64-create-jms-resource + + exec + + pre-integration-test + + ${exec.asadmin} + + --user + admin + --passwordfile + ${project.basedir}/j2ee.pass + create-jms-resource + --restype + jakarta.jms.Queue + --property + imqDestinationName=MDB_QUEUE_REPLY + MDB_QUEUE_REPLY + + + 90-stop-domain @@ -891,13 +1436,21 @@ ${project.build.directory}/${glassfish.toplevel.dir} + com.sun.enterprise.naming.impl.SerialInitContextFactory ${env.TS_HOME} ${project.basedir} arquillian.xml + cts1 + cts1 + + cts1 + cts1 + cts1 + cts1 - **/*Servlet*Test*.* - **/*Jsp*Test*.* + **/*-Servlet*Test*.* + **/*MDB*Jsp*Test*.* @@ -927,9 +1480,16 @@ ${env.TS_HOME} ${project.basedir} appclient-arquillian.xml + cts1 + cts1 + + cts1 + cts1 + cts1 + cts1 - **/*EJB*Test.* + **/*-Ejb*Test.* diff --git a/glassfish-runner/connector-platform-tck/run.log b/glassfish-runner/connector-platform-tck/run.log deleted file mode 100644 index 48be221f31..0000000000 --- a/glassfish-runner/connector-platform-tck/run.log +++ /dev/null @@ -1,30847 +0,0 @@ -[WARNING] Cache requires Maven >= 3.9, but version is 3.8.7. Disabling cache. -[INFO] Scanning for projects... -[WARNING] -[WARNING] Some problems were encountered while building the effective model for jakarta.tck:glassfish.connector-platform-tck:jar:11.0.0-SNAPSHOT -[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.codehaus.mojo:exec-maven-plugin @ line 279, column 21 -[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.apache.maven.plugins:maven-failsafe-plugin @ line 909, column 21 -[WARNING] -[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. -[WARNING] -[WARNING] For this reason, future Maven versions might no longer support building such malformed projects. -[WARNING] -[INFO] -[INFO] ------------< jakarta.tck:glassfish.connector-platform-tck >------------ -[INFO] Building glassfish.connector-platform-tck 11.0.0-SNAPSHOT -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] -[INFO] --- maven-clean-plugin:3.2.0:clean (default-clean) @ glassfish.connector-platform-tck --- -[INFO] Deleting /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0:enforce (enforce-maven) @ glassfish.connector-platform-tck --- -[INFO] -[INFO] --- spotless-maven-plugin:2.36.0:check (check-spotless-poms) @ glassfish.connector-platform-tck --- -[INFO] Index file does not exist. Fallback to an empty index -[INFO] Sorting file /tmp/pom12632559228354469526.xml -[INFO] Pom file is already sorted, exiting -[INFO] Sorting file /tmp/pom14153826683448017707.xml -[INFO] Pom file is already sorted, exiting -[INFO] Spotless.Pom is keeping 1 files clean - 0 needs changes to be clean, 1 were already clean, 0 were skipped because caching determined they were already clean -[INFO] -[INFO] --- maven-resources-plugin:3.0.2:copy-resources (copy-resource-one) @ glassfish.connector-platform-tck --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] Copying 1 resource -[INFO] -[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ glassfish.connector-platform-tck --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] skip non existing resourceDirectory /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/src/main/resources -[INFO] -[INFO] --- maven-compiler-plugin:3.12.1:compile (default-compile) @ glassfish.connector-platform-tck --- -[INFO] No sources to compile -[INFO] -[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ glassfish.connector-platform-tck --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] Copying 4 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.12.1:testCompile (default-testCompile) @ glassfish.connector-platform-tck --- -[INFO] Recompiling the module because of changed source code. -[INFO] Compiling 2 source files with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0:test (default-test) @ glassfish.connector-platform-tck --- -[INFO] -[INFO] --- maven-jar-plugin:3.4.2:jar (default-jar) @ glassfish.connector-platform-tck --- -[WARNING] JAR will be empty - no content was marked for inclusion! -[INFO] Building jar: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish.connector-platform-tck-11.0.0-SNAPSHOT.jar -[INFO] -[INFO] --- cyclonedx-maven-plugin:2.7.9:makeAggregateBom (default) @ glassfish.connector-platform-tck --- -[INFO] CycloneDX: Resolving Dependencies -Downloading from maven-default-http-blocker: http://0.0.0.0/jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml -[WARNING] Could not transfer metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http://0.0.0.0/): transfer failed for http://0.0.0.0/jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml -Downloading from maven-default-http-blocker: http://0.0.0.0/jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml -[WARNING] Could not transfer metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http://0.0.0.0/): transfer failed for http://0.0.0.0/jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml -[WARNING] jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xmlfailed to transfer from http://0.0.0.0/ during a previous attempt. This failure was cached in the local repository and resolution will not be reattempted until the update interval of maven-default-http-blocker has elapsed or updates are forced. Original error: Could not transfer metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml from/to maven-default-http-blocker (http://0.0.0.0/): transfer failed for http://0.0.0.0/jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml -[INFO] CycloneDX: Creating BOM version 1.4 with 97 component(s) -[INFO] CycloneDX: Writing and validating BOM (XML): /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/bom.xml -[INFO] attaching as glassfish.connector-platform-tck-11.0.0-SNAPSHOT-cyclonedx.xml -[INFO] CycloneDX: Writing and validating BOM (JSON): /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/bom.json -[WARNING] Unknown keyword additionalItems - you should define your own Meta Schema. If the keyword is irrelevant for validation, just use a NonValidationKeyword -[INFO] attaching as glassfish.connector-platform-tck-11.0.0-SNAPSHOT-cyclonedx.json -[INFO] -[INFO] --- maven-dependency-plugin:3.2.0:unpack (1-unpack) @ glassfish.connector-platform-tck --- -[INFO] Configured Artifact: org.glassfish.main.distributions:glassfish:7.0.0:zip -[INFO] Unpacking /home/g/.m2/repository/org/glassfish/main/distributions/glassfish/7.0.0/glassfish-7.0.0.zip to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target with includes "" and excludes "" -[INFO] -[INFO] --- maven-dependency-plugin:3.2.0:copy (2-copy-lib) @ glassfish.connector-platform-tck --- -[INFO] Configured Artifact: jakarta.tck.arquillian:arquillian-protocol-lib:?:jar -[INFO] Configured Artifact: jakarta.tck:libutil:?:jar -[INFO] Configured Artifact: jakarta.tck.arquillian:tck-porting-lib:?:jar -[INFO] Configured Artifact: jakarta.tck:runtime:?:jar -[INFO] Configured Artifact: jakarta.tck.arquillian:arquillian-protocol-lib:?:jar -[INFO] Copying arquillian-protocol-lib-1.0.0-M17.jar to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/lib/arquillian-protocol-lib.jar -[INFO] Copying libutil-11.0.0-SNAPSHOT.jar to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/lib/libutil.jar -[INFO] Copying tck-porting-lib-1.0.0-M17.jar to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/lib/tck-porting-lib.jar -[INFO] Copying runtime-11.0.0-SNAPSHOT.jar to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/lib/runtime.jar -[INFO] Copying arquillian-protocol-lib-1.0.0-M17.jar to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/protocol/protocol.jar -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (1-start-database) @ glassfish.connector-platform-tck --- -Starting database in Network Server mode on host 0.0.0.0 and port 1527. ---------- Derby Network Server Information -------- -Version: CSS10150/10.15.2.0 - (1873585) Build: 1873585 DRDA Product Id: CSS10150 --- listing properties -- -derby.drda.timeSlice=0 -derby.drda.portNumber=1527 -derby.drda.minThreads=0 -derby.drda.sslMode=off -derby.drda.traceAll=false -derby.drda.keepAlive=true -derby.drda.maxThreads=0 -derby.drda.logConnections=false -derby.drda.startNetworkServer=false -derby.drda.host=0.0.0.0 -derby.drda.traceDirectory=/home/g/tck/connector/platform-tck/gl... ------------------- Java Information ------------------ -Java Version: 17.0.13 -Java Vendor: Ubuntu -Java home: /usr/lib/jvm/java-17-openjdk-amd64 -Java classpath: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/lib/asadmin/cli-optional.jar:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derby.jar:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derbyshared.jar:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derbytools.jar:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derbynet.jar:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derbyclient.jar -OS name: Linux -OS architecture: amd64 -OS version: 6.8.0-45-generic -Java user name: g -Java user home: /home/g -Java user dir: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck -java.specification.name: Java Platform API Specification -java.specification.version: 17 -java.runtime.version: 17.0.13+11-Ubuntu-2ubuntu124.04 ---------- Derby Information -------- -[/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derby.jar] 10.15.2.0 - (1873585) -[/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derbytools.jar] 10.15.2.0 - (1873585) -[/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derbynet.jar] 10.15.2.0 - (1873585) -[/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derbyclient.jar] 10.15.2.0 - (1873585) -[/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/javadb/lib/derbyshared.jar] 10.15.2.0 - (1873585) ------------------------------------------------------- ------------------ Locale Information ----------------- -Current Locale : [English/India [en_IN]] -Found support for locale: [cs] - version: 10.15.2.0 - (1873585) -Found support for locale: [de_DE] - version: 10.15.2.0 - (1873585) -Found support for locale: [es] - version: 10.15.2.0 - (1873585) -Found support for locale: [fr] - version: 10.15.2.0 - (1873585) -Found support for locale: [hu] - version: 10.15.2.0 - (1873585) -Found support for locale: [it] - version: 10.15.2.0 - (1873585) -Found support for locale: [ja_JP] - version: 10.15.2.0 - (1873585) -Found support for locale: [ko_KR] - version: 10.15.2.0 - (1873585) -Found support for locale: [pl] - version: 10.15.2.0 - (1873585) -Found support for locale: [pt_BR] - version: 10.15.2.0 - (1873585) -Found support for locale: [ru] - version: 10.15.2.0 - (1873585) -Found support for locale: [zh_CN] - version: 10.15.2.0 - (1873585) -Found support for locale: [zh_TW] - version: 10.15.2.0 - (1873585) ------------------------------------------------------- ------------------------------------------------------- - -Starting database in the background. -Log redirected to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/databases/derby.log. -Command start-database executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (11-stop-domain) @ glassfish.connector-platform-tck --- -dasNotRunning() -CLI306: Warning - The server located at /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1 is not running. -Command stop-domain executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (12-start-domain) @ glassfish.connector-platform-tck --- -Waiting for domain1 to start .... -Waiting finished after 3,971 ms. -Successfully started the domain : domain1 -domain Location: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1 -Log File: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/logs/server.log -Admin Port: 4,848 -Command start-domain executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (13-create-jvm-options) @ glassfish.connector-platform-tck --- -Created 6 option(s) -Command create-jvm-options executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (14-create-file-user) @ glassfish.connector-platform-tck --- -Command create-file-user executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (15-create-file-user) @ glassfish.connector-platform-tck --- -Command create-file-user executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (24-deploy-whitebox-tx-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-tx. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (25-create-whitebox-tx-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-tx-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (26-create-whitebox-tx-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-tx created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (27-deploy-whitebox-xa-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-xa. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (28-create-whitebox-xa-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-xa-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (29-create-whitebox-xa-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-xa created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (30-deploy-whitebox-notx-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-notx. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (31-create-whitebox-notx-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-notx-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (32-create-whitebox-notx-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-notx created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (33-deploy-whitebox-mdcomplete-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-mdcomplete. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (34-create-whitebox-mdcomplete-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-mdcomplete-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (35-create-whitebox-mdcomplete-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-mdcomplete created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (36-deploy-whitebox-anno_no_md-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-anno_no_md. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (37-create-whitebox-anno_no_md-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-anno_no_md-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (38-create-whitebox-anno_no_md-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-anno_no_md created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (39-deploy-whitebox-mixedmode-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-mixedmode. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (40-create-whitebox-mixedmode-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-mixedmode-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (41-create-whitebox-mixedmode-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-mixedmode created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (42-deploy-whitebox-multianno-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-multianno. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (43-create-whitebox-multianno-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-multianno-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (44-create-whitebox-multianno-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-multianno created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (45-deploy-whitebox-tx-param-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-tx-param. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (46-create-whitebox-tx-param-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-tx-param-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (47-create-whitebox-tx-param-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-tx-param created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (48-deploy-whitebox-notx-param-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-notx-param. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (49-create-whitebox-notx-param-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-notx-param-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (50-create-whitebox-notx-param-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-notx-param created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (51-deploy-whitebox-xa-param-connector) @ glassfish.connector-platform-tck --- -Application deployed with name whitebox-xa-param. -Command deploy executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (52-create-whitebox-xa-param-connector-pool) @ glassfish.connector-platform-tck --- -Connector connection pool whitebox-xa-param-pool created. -Command create-connector-connection-pool executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (53-create-whitebox-xa-param-jndi) @ glassfish.connector-platform-tck --- -Connector resource eis/whitebox-xa-param created. -Command create-connector-resource executed successfully. -[INFO] -[INFO] --- exec-maven-plugin:3.2.0:exec (90-stop-domain) @ glassfish.connector-platform-tck --- -Waiting for the domain to stop . -Waiting finished after 176 ms. -Command stop-domain executed successfully. -[INFO] -[INFO] --- maven-failsafe-plugin:3.0.0-M5:integration-test (connector-javatest-tests) @ glassfish.connector-platform-tck --- -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[ERROR] WARNING: package com.sun.ts.tests.connector.noTx.lifecycle not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.localTx.connection not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.localTx.workmgt not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.connManager not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.annotations.anno not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.permissiondd not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.noTx.connection not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.localTx.event not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.noTx.event not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.annotations.partialanno not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.xa.workmgt not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.localTx.security not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.localTx.msginflow not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.localTx.workcontext not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.xa.connection not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.noTx.workmgt not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.xa.event not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.annotations.mdcomplete not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.localTx.transinflow not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.xa.lifecycle not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.localTx.lifecycle not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.xa.security not in glassfish.connector.platform.tck -[ERROR] WARNING: package com.sun.ts.tests.connector.noTx.security not in glassfish.connector.platform.tck -[INFO] Running com.sun.ts.tests.connector.annotations.anno.annotationClientJspTest -Nov 19, 2024 5:55:50 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -SLF4J: No SLF4J providers were found. -SLF4J: Defaulting to no-operation (NOP) logger implementation -SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details. -Nov 19, 2024 5:55:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:55:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:55:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:55:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:55:53 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:56:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:56:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Starting container using command: [/usr/lib/jvm/java-17-openjdk-amd64/bin/java, -jar, /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/modules/admin-cli.jar, start-domain, -t] -Waiting finished after 5,978 ms. -Successfully started the domain : domain1 -domain Location: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1 -Log File: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/logs/server.log -Admin Port: 4,848 -Nov 19, 2024 5:56:16 PM org.omnifaces.arquillian.container.glassfish.clientutils.GlassFishClientUtil getResponseMap -SEVERE: While Deploying Application: annotations_jsp_vehicle --exit_code: FAILURE, message: Error occurred during deployment: Exception while deploying the app [annotations_jsp_vehicle] : Deployment descriptor file WEB-INF/web.xml in archive [annotations_jsp_vehicle_web_war]. Element [ejb-jar] is not a valid root element. Please see server.log for more details. [status: CLIENT_ERROR reason: Bad Request] -Nov 19, 2024 5:56:16 PM org.omnifaces.arquillian.container.glassfish.clientutils.GlassFishClientUtil getResponseMap -WARNING: While Deploying Application: annotations_jsp_vehicle --exit_code: FAILURE, message: Resource not found. [status: CLIENT_ERROR reason: Not Found] -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 27.19 s <<< FAILURE! - in com.sun.ts.tests.connector.annotations.anno.annotationClientJspTest -[ERROR] com.sun.ts.tests.connector.annotations.anno.annotationClientJspTest Time elapsed: 27.19 s <<< ERROR! -org.jboss.arquillian.container.spi.client.container.DeploymentException: Could not deploy annotations_jsp_vehicle.ear -Caused by: org.omnifaces.arquillian.jersey.server.ContainerException: While Deploying Application: annotations_jsp_vehicle --exit_code: FAILURE, message: Error occurred during deployment: Exception while deploying the app [annotations_jsp_vehicle] : Deployment descriptor file WEB-INF/web.xml in archive [annotations_jsp_vehicle_web_war]. Element [ejb-jar] is not a valid root element. Please see server.log for more details. [status: CLIENT_ERROR reason: Bad Request] - -[INFO] Running com.sun.ts.tests.connector.annotations.anno.annotationClientServletTest -Nov 19, 2024 5:56:16 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:56:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:56:27 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:27 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:28 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:56:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:39 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:56:48 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:56:52 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.anno.annotationClient, vehicle: servlet -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.anno.annotationClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=annotations_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -************************************************************ -* props file set to "/tmp/g-cts-props.txt" -************************************************************ -11-19-2024 17:56:52: TRACE: ####### Value of harness.socket.retry.count is "10" -11-19-2024 17:56:52: TRACE: ####### Value of harness.log.port is "2000" -11-19-2024 17:56:52: TRACE: ####### Actual bind value of harness.log.port is "2000" -11-19-2024 17:56:52: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:56:52: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:56:52: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:56:52: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:56:52: TRACE: in ServiceEETest.run() method -11-19-2024 17:56:52: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:56:52: Opened connection to http://localhost:8080/annotations_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:56:52: TRACE: got outputstream -11-19-2024 17:56:52: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:56:52: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:56:52: SVR-TRACE: In doPost -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:56:52: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:56:52: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConfigPropertyAnnotationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=annotations_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.anno.annotationClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:56:52: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/anno/annotationClient.class -11-19-2024 17:56:52: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:56:52: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:56:52: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:56:52: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:56:52: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ** IN getRunMethod: testname=testConfigPropertyAnnotation -11-19-2024 17:56:52: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:56:52: SVR-TRACE: **runmethod=testConfigPropertyAnnotation -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:56:52: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:56:52: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConfigPropertyAnnotation_setup -11-19-2024 17:56:52: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:56:52: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:56:52: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConfigPropertyAnnotation_cleanup -11-19-2024 17:56:52: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:56:52: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:56:52: SVR: Using: java:comp/env/eis/whitebox-anno_no_md -11-19-2024 17:56:52: SVR: ds1 lookup is not null -11-19-2024 17:56:52: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@d57dad9 -11-19-2024 17:56:52: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:56:52: SVR-TRACE: Got connection. -11-19-2024 17:56:52: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT] -11-19-2024 17:56:52: SVR: Methods called correctly -11-19-2024 17:56:52: SVR: Cleanup -11-19-2024 17:56:52: Test status from a servlet: 0: -11-19-2024 17:56:52: Test: returning from running in a servlet vehicle -11-19-2024 17:56:52: TRACE: SLEPT FOR: 0 -11-19-2024 17:56:52: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:56:52: SVR: Test running in servlet vehicle passed -Nov 19, 2024 5:56:52 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.anno.annotationClient, vehicle: servlet -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.anno.annotationClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=annotations_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:56:52: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:56:52: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:56:52: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:56:52: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:56:52: TRACE: in ServiceEETest.run() method -11-19-2024 17:56:52: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:56:52: Opened connection to http://localhost:8080/annotations_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:56:52: TRACE: got outputstream -11-19-2024 17:56:52: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:56:52: SVR-TRACE: In doPost -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:56:52: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:56:52: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnectorAnnotationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=annotations_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.anno.annotationClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:56:52: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/anno/annotationClient.class -11-19-2024 17:56:52: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:56:52: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:56:52: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:56:52: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:56:52: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ** IN getRunMethod: testname=testConnectorAnnotation -11-19-2024 17:56:52: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:56:52: SVR-TRACE: **runmethod=testConnectorAnnotation -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:56:52: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:56:52: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnectorAnnotation_setup -11-19-2024 17:56:52: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:56:52: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:56:52: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnectorAnnotation_cleanup -11-19-2024 17:56:52: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:56:52: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:56:52: SVR: Using: java:comp/env/eis/whitebox-anno_no_md -11-19-2024 17:56:52: SVR: ds1 lookup is not null -11-19-2024 17:56:52: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@21b9b236 -11-19-2024 17:56:52: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:56:52: SVR-TRACE: Got connection. -11-19-2024 17:56:52: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT] -11-19-2024 17:56:52: SVR: Methods called correctly -11-19-2024 17:56:52: SVR: Performing end to end verification... -11-19-2024 17:56:52: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:56:52: SVR: Exception inserting into table. -11-19-2024 17:56:52: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:56:52: SVR-ERROR: Exception at: -11-19-2024 17:56:52: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.annotations.anno.annotationClient.testConnectorAnnotation(annotationClient.java:168) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.annotations.anno.annotationClient.testConnectorAnnotation(annotationClient.java:164) - ... 38 more - -11-19-2024 17:56:52: SVR: Cleanup -11-19-2024 17:56:52: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:56:52: SVR: Test running in servlet vehicle failed -11-19-2024 17:56:52: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:56:52: Test: returning from running in a servlet vehicle -11-19-2024 17:56:52: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:56:52 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.anno.annotationClient, vehicle: servlet -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.anno.annotationClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=annotations_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:56:52: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:56:52: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:56:52: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:56:52: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:56:52: TRACE: in ServiceEETest.run() method -11-19-2024 17:56:52: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:56:52: Opened connection to http://localhost:8080/annotations_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:56:52: TRACE: got outputstream -11-19-2024 17:56:52: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:56:52: SVR-TRACE: In doPost -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:56:52: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:56:52: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRAAccessibilitynullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=annotations_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.anno.annotationClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:56:52: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/anno/annotationClient.class -11-19-2024 17:56:52: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:56:52: Test status from a servlet: 0: -11-19-2024 17:56:52: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:56:52: Test: returning from running in a servlet vehicle -11-19-2024 17:56:52: TRACE: SLEPT FOR: 0 -11-19-2024 17:56:52: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:56:52: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:56:52: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ** IN getRunMethod: testname=testRAAccessibility -11-19-2024 17:56:52: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:56:52: SVR-TRACE: **runmethod=testRAAccessibility -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:56:52: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:56:52: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRAAccessibility_setup -11-19-2024 17:56:52: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:56:52: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:56:52: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRAAccessibility_cleanup -11-19-2024 17:56:52: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:56:52: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:56:52: SVR: Using: java:comp/env/eis/whitebox-anno_no_md -11-19-2024 17:56:52: SVR: ds1 lookup is not null -11-19-2024 17:56:52: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@61bdfccc -11-19-2024 17:56:52: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:56:52: SVR-TRACE: Got connection. -11-19-2024 17:56:52: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test] -11-19-2024 17:56:52: SVR: Methods called correctly -11-19-2024 17:56:52: SVR: Cleanup -11-19-2024 17:56:52: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:56:52: SVR: Test running in servlet vehicle passed -Nov 19, 2024 5:56:52 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.anno.annotationClient, vehicle: servlet -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:56:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.anno.annotationClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=annotations_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:56:52: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:56:52: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:56:52: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:56:52: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:56:52: TRACE: in ServiceEETest.run() method -11-19-2024 17:56:52: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:56:52: Opened connection to http://localhost:8080/annotations_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:56:52: TRACE: got outputstream -11-19-2024 17:56:52: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:56:52: SVR-TRACE: In doPost -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:56:52: Test status from a servlet: 0: -11-19-2024 17:56:52: Test: returning from running in a servlet vehicle -11-19-2024 17:56:52: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:56:52: TRACE: SLEPT FOR: 0 -11-19-2024 17:56:52: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:56:52: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testSetterMethodConfigPropAnnonullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=annotations_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.anno.annotationClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:56:52: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/anno/annotationClient.class -11-19-2024 17:56:52: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:56:52: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/annotations_servlet_vehicle/annotations_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:56:52: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:56:52: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:56:52: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ** IN getRunMethod: testname=testSetterMethodConfigPropAnno -11-19-2024 17:56:52: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:56:52: SVR-TRACE: **runmethod=testSetterMethodConfigPropAnno -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:56:52: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:56:52: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testSetterMethodConfigPropAnno_setup -11-19-2024 17:56:52: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:56:52: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:56:52: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testSetterMethodConfigPropAnno_cleanup -11-19-2024 17:56:52: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:56:52: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.anno.annotationClient -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:56:52: SVR: Using: java:comp/env/eis/whitebox-anno_no_md -11-19-2024 17:56:52: SVR: ds1 lookup is not null -11-19-2024 17:56:52: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@8707e1b -11-19-2024 17:56:52: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:56:52: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:56:52: SVR-TRACE: Got connection. -11-19-2024 17:56:52: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test] -11-19-2024 17:56:52: SVR: Methods called correctly -11-19-2024 17:56:52: SVR: Cleanup -11-19-2024 17:56:52: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:56:52: SVR: Test running in servlet vehicle passed -[ERROR] Tests run: 4, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 36.546 s <<< FAILURE! - in com.sun.ts.tests.connector.annotations.anno.annotationClientServletTest -[ERROR] com.sun.ts.tests.connector.annotations.anno.annotationClientServletTest.testConnectorAnnotation Time elapsed: 0.088 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.annotations.mdcomplete.ClientJspTest -Nov 19, 2024 5:56:52 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:56:53 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:53 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:53 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:56:54 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:54 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:54 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:56:54 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:56:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:56:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:56:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:08 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.mdcomplete.Client, vehicle: jsp -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:08 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.mdcomplete.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=mdcomplete_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:08: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:08: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:08: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:08: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:08: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:08: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:08: Opened connection to http://localhost:8080/mdcomplete_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:08: TRACE: got outputstream -11-19-2024 17:57:08: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:08: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:08: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:08: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:08: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:08: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMDCompleteConfigPropnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=mdcomplete_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.mdcomplete.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:08: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:08: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:08: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:08: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_jsp_vehicle/mdcomplete_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/mdcomplete/Client.class -11-19-2024 17:57:08: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_jsp_vehicle/mdcomplete_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:08: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_jsp_vehicle/mdcomplete_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:08: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:08: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:08: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:08: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:08: SVR-TRACE: ** IN getRunMethod: testname=testMDCompleteConfigProp -11-19-2024 17:57:08: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:08: SVR-TRACE: **runmethod=testMDCompleteConfigProp -11-19-2024 17:57:08: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:08: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:08: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMDCompleteConfigProp_setup -11-19-2024 17:57:08: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:08: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:08: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:08: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMDCompleteConfigProp_cleanup -11-19-2024 17:57:08: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:08: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:08: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:08: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:57:09: SVR: ds2 lookup is not null -11-19-2024 17:57:09: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@582b009a -11-19-2024 17:57:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:09: SVR-TRACE: Got connection. -11-19-2024 17:57:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called] -11-19-2024 17:57:09: SVR: testMDCompleteConfigProp called correctly -11-19-2024 17:57:09: SVR: Cleanup -11-19-2024 17:57:09: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:09: SVR: Test running in jsp vehicle passed -11-19-2024 17:57:09: Test status from a jsp: 0: -11-19-2024 17:57:09: Test: returning from running in a jsp vehicle -11-19-2024 17:57:09: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.mdcomplete.Client, vehicle: jsp -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.mdcomplete.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=mdcomplete_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:09: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:09: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:09: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:09: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:09: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:09: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:09: Opened connection to http://localhost:8080/mdcomplete_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:09: TRACE: got outputstream -11-19-2024 17:57:09: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:09: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:09: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:09: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:09: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:09: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMDCompleteMCFAnnonullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=mdcomplete_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.mdcomplete.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:09: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:09: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:09: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:09: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_jsp_vehicle/mdcomplete_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/mdcomplete/Client.class -11-19-2024 17:57:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_jsp_vehicle/mdcomplete_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_jsp_vehicle/mdcomplete_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:09: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:09: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:09: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:09: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:09: SVR-TRACE: ** IN getRunMethod: testname=testMDCompleteMCFAnno -11-19-2024 17:57:09: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:09: SVR-TRACE: **runmethod=testMDCompleteMCFAnno -11-19-2024 17:57:09: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:09: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:09: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMDCompleteMCFAnno_setup -11-19-2024 17:57:09: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:09: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:09: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:09: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMDCompleteMCFAnno_cleanup -11-19-2024 17:57:09: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:09: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:09: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:09: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:57:09: SVR: ds2 lookup is not null -11-19-2024 17:57:09: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4f992f75 -11-19-2024 17:57:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:09: SVR-TRACE: Got connection. -11-19-2024 17:57:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called] -11-19-2024 17:57:09: Test status from a jsp: 0: -11-19-2024 17:57:09: Test: returning from running in a jsp vehicle -11-19-2024 17:57:09: SVR: testMDCompleteMCFAnno called correctly -11-19-2024 17:57:09: TRACE: SLEPT FOR: 0 -11-19-2024 17:57:09: SVR: Cleanup -11-19-2024 17:57:09: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:09: SVR: Test running in jsp vehicle passed -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 16.201 s - in com.sun.ts.tests.connector.annotations.mdcomplete.ClientJspTest -[INFO] Running com.sun.ts.tests.connector.annotations.mdcomplete.ClientServletTest -Nov 19, 2024 5:57:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:13 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.mdcomplete.Client, vehicle: servlet -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.mdcomplete.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=mdcomplete_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:13: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:13: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:13: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:13: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:13: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:13: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:57:13: Opened connection to http://localhost:8080/mdcomplete_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:57:13: TRACE: got outputstream -11-19-2024 17:57:13: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:57:13: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:57:13: SVR-TRACE: In doPost -11-19-2024 17:57:13: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:57:13: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:57:13: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:57:13: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:57:13: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:57:13: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMDCompleteConfigPropnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=mdcomplete_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.mdcomplete.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:13: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_servlet_vehicle/mdcomplete_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/mdcomplete/Client.class -11-19-2024 17:57:13: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_servlet_vehicle/mdcomplete_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:13: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_servlet_vehicle/mdcomplete_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:13: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:13: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:13: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:13: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:13: SVR-TRACE: ** IN getRunMethod: testname=testMDCompleteConfigProp -11-19-2024 17:57:13: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:13: SVR-TRACE: **runmethod=testMDCompleteConfigProp -11-19-2024 17:57:13: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:13: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:13: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMDCompleteConfigProp_setup -11-19-2024 17:57:13: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:13: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:13: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:13: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMDCompleteConfigProp_cleanup -11-19-2024 17:57:13: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:13: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:13: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:13: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:57:13: SVR: ds2 lookup is not null -11-19-2024 17:57:13: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@53e16d53 -11-19-2024 17:57:13: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:13: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:13: SVR-TRACE: Got connection. -11-19-2024 17:57:13: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called] -11-19-2024 17:57:13: SVR: testMDCompleteConfigProp called correctly -11-19-2024 17:57:13: SVR: Cleanup -11-19-2024 17:57:13: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:13: SVR: Test running in servlet vehicle passed -11-19-2024 17:57:13: Test status from a servlet: 0: -11-19-2024 17:57:13: Test: returning from running in a servlet vehicle -11-19-2024 17:57:13: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:13 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.mdcomplete.Client, vehicle: servlet -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.mdcomplete.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=mdcomplete_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:13: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:13: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:13: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:13: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:13: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:13: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:57:13: Opened connection to http://localhost:8080/mdcomplete_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:57:13: TRACE: got outputstream -11-19-2024 17:57:13: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:57:13: SVR-TRACE: In doPost -11-19-2024 17:57:13: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:57:13: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:57:13: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:57:13: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:57:13: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:57:13: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMDCompleteMCFAnnonullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=mdcomplete_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.mdcomplete.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:13: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_servlet_vehicle/mdcomplete_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/mdcomplete/Client.class -11-19-2024 17:57:13: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_servlet_vehicle/mdcomplete_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:13: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/mdcomplete_servlet_vehicle/mdcomplete_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:13: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:13: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:13: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:13: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:13: SVR-TRACE: ** IN getRunMethod: testname=testMDCompleteMCFAnno -11-19-2024 17:57:13: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:13: SVR-TRACE: **runmethod=testMDCompleteMCFAnno -11-19-2024 17:57:13: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:13: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:13: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMDCompleteMCFAnno_setup -11-19-2024 17:57:13: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:13: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:13: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:13: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMDCompleteMCFAnno_cleanup -11-19-2024 17:57:13: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:13: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.mdcomplete.Client -11-19-2024 17:57:13: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:13: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:57:13: SVR: ds2 lookup is not null -11-19-2024 17:57:13: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@571d4953 -11-19-2024 17:57:13: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:13: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:13: SVR-TRACE: Got connection. -11-19-2024 17:57:13: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called] -11-19-2024 17:57:13: SVR: testMDCompleteMCFAnno called correctly -11-19-2024 17:57:13: SVR: Cleanup -11-19-2024 17:57:13: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:13: SVR: Test running in servlet vehicle passed -11-19-2024 17:57:13: Test status from a servlet: 0: -11-19-2024 17:57:13: Test: returning from running in a servlet vehicle -11-19-2024 17:57:13: TRACE: SLEPT FOR: 0 -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.928 s - in com.sun.ts.tests.connector.annotations.mdcomplete.ClientServletTest -[INFO] Running com.sun.ts.tests.connector.annotations.partialanno.paClientJspTest -Nov 19, 2024 5:57:14 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:15 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:15 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:15 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:19 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: jsp -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:19: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:19: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:19: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:19: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:19: Opened connection to http://localhost:8080/partialanno_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:19: TRACE: got outputstream -11-19-2024 17:57:19: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:19: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testDDOverridesAnnonullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:19: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:19: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:19: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:19: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testname=testDDOverridesAnno -11-19-2024 17:57:19: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: **runmethod=testDDOverridesAnno -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testDDOverridesAnno_setup -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:19: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testDDOverridesAnno_cleanup -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:19: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:19: SVR: ds2 lookup is not null -11-19-2024 17:57:19: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@696555b2 -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:19: SVR: ds1 lookup is not null -11-19-2024 17:57:19: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@696555b2 -11-19-2024 17:57:19: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: Got connection. -11-19-2024 17:57:19: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:19: SVR: looking up following string in conenctor log: MAResourceAdapterImpl Started -11-19-2024 17:57:19: SVR: testDDOverridesAnno passed. -11-19-2024 17:57:19: SVR: Cleanup -11-19-2024 17:57:19: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:19: SVR: Test running in jsp vehicle passed -11-19-2024 17:57:19: Test status from a jsp: 0: -11-19-2024 17:57:19: Test: returning from running in a jsp vehicle -11-19-2024 17:57:19: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:19 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: jsp -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:19: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:19: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:19: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:19: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:19: Opened connection to http://localhost:8080/partialanno_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:19: TRACE: got outputstream -11-19-2024 17:57:19: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:19: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMixedModeConfigPropertyMCFnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:19: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:19: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:19: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:19: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testname=testMixedModeConfigPropertyMCF -11-19-2024 17:57:19: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: **runmethod=testMixedModeConfigPropertyMCF -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMixedModeConfigPropertyMCF_setup -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:19: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMixedModeConfigPropertyMCF_cleanup -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:19: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:19: SVR: ds2 lookup is not null -11-19-2024 17:57:19: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7eaed885 -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:19: SVR: ds1 lookup is not null -11-19-2024 17:57:19: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7eaed885 -11-19-2024 17:57:19: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: Got connection. -11-19-2024 17:57:19: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:19: SVR: Methods called correctly -11-19-2024 17:57:19: SVR: Cleanup -11-19-2024 17:57:19: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:19: SVR: Test running in jsp vehicle passed -11-19-2024 17:57:19: Test status from a jsp: 0: -11-19-2024 17:57:19: Test: returning from running in a jsp vehicle -11-19-2024 17:57:19: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:19 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: jsp -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:19: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:19: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:19: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:19: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:19: Opened connection to http://localhost:8080/partialanno_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:19: TRACE: got outputstream -11-19-2024 17:57:19: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:19: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMixedModeConfigPropertyNoOverridenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:19: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:19: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:19: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:19: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testname=testMixedModeConfigPropertyNoOverride -11-19-2024 17:57:19: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: **runmethod=testMixedModeConfigPropertyNoOverride -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMixedModeConfigPropertyNoOverride_setup -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:19: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMixedModeConfigPropertyNoOverride_cleanup -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:19: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:19: SVR: ds2 lookup is not null -11-19-2024 17:57:19: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@34201268 -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:19: SVR: ds1 lookup is not null -11-19-2024 17:57:19: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@34201268 -11-19-2024 17:57:19: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: Got connection. -11-19-2024 17:57:19: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:19: SVR: Methods called correctly -11-19-2024 17:57:19: SVR: Cleanup -11-19-2024 17:57:19: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:19: SVR: Test running in jsp vehicle passed -11-19-2024 17:57:19: Test status from a jsp: 0: -11-19-2024 17:57:19: Test: returning from running in a jsp vehicle -11-19-2024 17:57:19: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:19 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: jsp -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:19: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:19: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:19: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:19: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:19: Opened connection to http://localhost:8080/partialanno_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:19: TRACE: got outputstream -11-19-2024 17:57:19: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:19: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMixedModeConfigPropertyOverridenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:19: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:19: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:19: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:19: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testname=testMixedModeConfigPropertyOverride -11-19-2024 17:57:19: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: **runmethod=testMixedModeConfigPropertyOverride -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMixedModeConfigPropertyOverride_setup -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:19: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMixedModeConfigPropertyOverride_cleanup -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:19: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:19: SVR: ds2 lookup is not null -11-19-2024 17:57:19: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1190b225 -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:19: SVR: ds1 lookup is not null -11-19-2024 17:57:19: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1190b225 -11-19-2024 17:57:19: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: Got connection. -11-19-2024 17:57:19: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:19: SVR: Methods called correctly -11-19-2024 17:57:19: SVR: Cleanup -11-19-2024 17:57:19: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:19: SVR: Test running in jsp vehicle passed -11-19-2024 17:57:19: Test status from a jsp: 0: -11-19-2024 17:57:19: Test: returning from running in a jsp vehicle -11-19-2024 17:57:19: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:19 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: jsp -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:19: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:19: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:19: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:19: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:19: Opened connection to http://localhost:8080/partialanno_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:19: TRACE: got outputstream -11-19-2024 17:57:19: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:19: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMixedModeConfigPropertyRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:19: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:19: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:19: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:19: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testname=testMixedModeConfigPropertyRA -11-19-2024 17:57:19: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: **runmethod=testMixedModeConfigPropertyRA -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMixedModeConfigPropertyRA_setup -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:19: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMixedModeConfigPropertyRA_cleanup -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:19: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:19: SVR: ds2 lookup is not null -11-19-2024 17:57:19: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@3c169e8b -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:19: SVR: ds1 lookup is not null -11-19-2024 17:57:19: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@3c169e8b -11-19-2024 17:57:19: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: Got connection. -11-19-2024 17:57:19: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:19: SVR: Methods called correctly -11-19-2024 17:57:19: Test status from a jsp: 0: -11-19-2024 17:57:19: SVR: Cleanup -11-19-2024 17:57:19: Test: returning from running in a jsp vehicle -11-19-2024 17:57:19: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:19: TRACE: SLEPT FOR: 0 -11-19-2024 17:57:19: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:57:19 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: jsp -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:19 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:19: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:19: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:19: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:19: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:19: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:19: Opened connection to http://localhost:8080/partialanno_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:19: TRACE: got outputstream -11-19-2024 17:57:19: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:19: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:19: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNoDefaultVallAnnoElementnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:19: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:19: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:19: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_jsp_vehicle/partialanno_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:19: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:19: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:19: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ** IN getRunMethod: testname=testNoDefaultVallAnnoElement -11-19-2024 17:57:19: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: **runmethod=testNoDefaultVallAnnoElement -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNoDefaultVallAnnoElement_setup -11-19-2024 17:57:19: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:19: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNoDefaultVallAnnoElement_cleanup -11-19-2024 17:57:19: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:19: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:19: SVR: ds2 lookup is not null -11-19-2024 17:57:19: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@351d3ad9 -11-19-2024 17:57:19: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:19: SVR: ds1 lookup is not null -11-19-2024 17:57:19: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@351d3ad9 -11-19-2024 17:57:19: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:19: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:19: SVR-TRACE: Got connection. -11-19-2024 17:57:19: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:19: SVR: Methods called correctly -11-19-2024 17:57:19: SVR: Cleanup -11-19-2024 17:57:19: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:19: SVR: Test running in jsp vehicle passed -11-19-2024 17:57:19: Test status from a jsp: 0: -11-19-2024 17:57:19: Test: returning from running in a jsp vehicle -11-19-2024 17:57:19: TRACE: SLEPT FOR: 0 -[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.702 s - in com.sun.ts.tests.connector.annotations.partialanno.paClientJspTest -[INFO] Running com.sun.ts.tests.connector.annotations.partialanno.paClientServletTest -Nov 19, 2024 5:57:19 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:20 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:20 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:22 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:32 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:32 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:32 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:32 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: servlet -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:57:34: Opened connection to http://localhost:8080/partialanno_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:57:34: TRACE: got outputstream -11-19-2024 17:57:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:57:34: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:57:34: SVR-TRACE: In doPost -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:57:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:57:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testDDOverridesAnnonullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testname=testDDOverridesAnno -11-19-2024 17:57:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: **runmethod=testDDOverridesAnno -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testDDOverridesAnno_setup -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testDDOverridesAnno_cleanup -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:34: SVR: ds2 lookup is not null -11-19-2024 17:57:34: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7763a650 -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:34: SVR: ds1 lookup is not null -11-19-2024 17:57:34: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7763a650 -11-19-2024 17:57:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: Got connection. -11-19-2024 17:57:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:34: SVR: looking up following string in conenctor log: MAResourceAdapterImpl Started -11-19-2024 17:57:34: SVR: testDDOverridesAnno passed. -11-19-2024 17:57:34: SVR: Cleanup -11-19-2024 17:57:34: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:57:34: Test status from a servlet: 0: -11-19-2024 17:57:34: Test: returning from running in a servlet vehicle -11-19-2024 17:57:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: servlet -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:57:34: Opened connection to http://localhost:8080/partialanno_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:57:34: TRACE: got outputstream -11-19-2024 17:57:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:57:34: SVR-TRACE: In doPost -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:57:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:57:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMixedModeConfigPropertyMCFnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testname=testMixedModeConfigPropertyMCF -11-19-2024 17:57:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: **runmethod=testMixedModeConfigPropertyMCF -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMixedModeConfigPropertyMCF_setup -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMixedModeConfigPropertyMCF_cleanup -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:34: SVR: ds2 lookup is not null -11-19-2024 17:57:34: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@24295a71 -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:34: SVR: ds1 lookup is not null -11-19-2024 17:57:34: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@24295a71 -11-19-2024 17:57:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: Got connection. -11-19-2024 17:57:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:34: SVR: Methods called correctly -11-19-2024 17:57:34: SVR: Cleanup -11-19-2024 17:57:34: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:57:34: Test status from a servlet: 0: -11-19-2024 17:57:34: Test: returning from running in a servlet vehicle -11-19-2024 17:57:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: servlet -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:57:34: Opened connection to http://localhost:8080/partialanno_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:57:34: TRACE: got outputstream -11-19-2024 17:57:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:57:34: SVR-TRACE: In doPost -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:57:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:57:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMixedModeConfigPropertyNoOverridenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testname=testMixedModeConfigPropertyNoOverride -11-19-2024 17:57:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: **runmethod=testMixedModeConfigPropertyNoOverride -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMixedModeConfigPropertyNoOverride_setup -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMixedModeConfigPropertyNoOverride_cleanup -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:34: SVR: ds2 lookup is not null -11-19-2024 17:57:34: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4d31a4b7 -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:34: SVR: ds1 lookup is not null -11-19-2024 17:57:34: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4d31a4b7 -11-19-2024 17:57:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: Got connection. -11-19-2024 17:57:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:34: SVR: Methods called correctly -11-19-2024 17:57:34: SVR: Cleanup -11-19-2024 17:57:34: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:57:34: Test status from a servlet: 0: -11-19-2024 17:57:34: Test: returning from running in a servlet vehicle -11-19-2024 17:57:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: servlet -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:57:34: Opened connection to http://localhost:8080/partialanno_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:57:34: TRACE: got outputstream -11-19-2024 17:57:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:57:34: SVR-TRACE: In doPost -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:57:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:57:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMixedModeConfigPropertyOverridenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testname=testMixedModeConfigPropertyOverride -11-19-2024 17:57:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: **runmethod=testMixedModeConfigPropertyOverride -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMixedModeConfigPropertyOverride_setup -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMixedModeConfigPropertyOverride_cleanup -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:34: SVR: ds2 lookup is not null -11-19-2024 17:57:34: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@58a8624e -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:34: SVR: ds1 lookup is not null -11-19-2024 17:57:34: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@58a8624e -11-19-2024 17:57:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: Got connection. -11-19-2024 17:57:34: Test status from a servlet: 0: -11-19-2024 17:57:34: Test: returning from running in a servlet vehicle -11-19-2024 17:57:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: servlet -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:57:34: Opened connection to http://localhost:8080/partialanno_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:57:34: TRACE: got outputstream -11-19-2024 17:57:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:57:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:34: SVR: Methods called correctly -11-19-2024 17:57:34: SVR: Cleanup -11-19-2024 17:57:34: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:57:34: SVR-TRACE: In doPost -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:57:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:57:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMixedModeConfigPropertyRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testname=testMixedModeConfigPropertyRA -11-19-2024 17:57:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: **runmethod=testMixedModeConfigPropertyRA -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:34: Test status from a servlet: 0: -11-19-2024 17:57:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMixedModeConfigPropertyRA_setup -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:34: Test: returning from running in a servlet vehicle -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMixedModeConfigPropertyRA_cleanup -11-19-2024 17:57:34: TRACE: SLEPT FOR: 0 -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:34: SVR: ds2 lookup is not null -11-19-2024 17:57:34: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1c991c96 -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:34: SVR: ds1 lookup is not null -11-19-2024 17:57:34: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1c991c96 -11-19-2024 17:57:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: Got connection. -11-19-2024 17:57:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:34: SVR: Methods called correctly -11-19-2024 17:57:34: SVR: Cleanup -11-19-2024 17:57:34: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:34: SVR: Test running in servlet vehicle passed -Nov 19, 2024 5:57:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.annotations.partialanno.paClient, vehicle: servlet -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.annotations.partialanno.paClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=partialanno_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:57:34: Opened connection to http://localhost:8080/partialanno_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:57:34: TRACE: got outputstream -11-19-2024 17:57:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:57:34: SVR-TRACE: In doPost -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:57:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:57:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:57:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNoDefaultVallAnnoElementnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=partialanno_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.annotations.partialanno.paClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/annotations/partialanno/paClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/partialanno_servlet_vehicle/partialanno_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ** IN getRunMethod: testname=testNoDefaultVallAnnoElement -11-19-2024 17:57:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: **runmethod=testNoDefaultVallAnnoElement -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNoDefaultVallAnnoElement_setup -11-19-2024 17:57:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNoDefaultVallAnnoElement_cleanup -11-19-2024 17:57:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.annotations.partialanno.paClient -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-mixedmode -11-19-2024 17:57:34: SVR: ds2 lookup is not null -11-19-2024 17:57:34: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7ff882f0 -11-19-2024 17:57:34: SVR: Performing jndi lookup using: java:comp/env/eis/whitebox-multianno -11-19-2024 17:57:34: SVR: ds1 lookup is not null -11-19-2024 17:57:34: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7ff882f0 -11-19-2024 17:57:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:34: SVR-TRACE: Got connection. -11-19-2024 17:57:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL] -11-19-2024 17:57:34: SVR: Methods called correctly -11-19-2024 17:57:34: SVR: Cleanup -11-19-2024 17:57:34: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:57:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:57:34: Test status from a servlet: 0: -11-19-2024 17:57:34: Test: returning from running in a servlet vehicle -11-19-2024 17:57:34: TRACE: SLEPT FOR: 0 -[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.721 s - in com.sun.ts.tests.connector.annotations.partialanno.paClientServletTest -[INFO] Running com.sun.ts.tests.connector.connManager.connManagerClient1JspTest -Nov 19, 2024 5:57:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:34 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:36 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:36 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:37 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:46 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:47 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:47 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:57:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:57:58 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.connManager.connManagerClient1, vehicle: jsp -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.connManager.connManagerClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=connManager_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:58: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:58: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:58: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:58: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:58: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:58: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:58: Opened connection to http://localhost:8080/connManager_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:58: TRACE: got outputstream -11-19-2024 17:57:58: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:59: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:59: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:59: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:59: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testTransactionSupportLevelsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=connManager_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.connManager.connManagerClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:59: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:59: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:59: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_jsp_vehicle/connManager_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/connManager/connManagerClient1.class -11-19-2024 17:57:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_jsp_vehicle/connManager_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_jsp_vehicle/connManager_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:57:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:57:59: SVR-TRACE: ** IN getRunMethod: testname=testTransactionSupportLevels -11-19-2024 17:57:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:59: SVR-TRACE: **runmethod=testTransactionSupportLevels -11-19-2024 17:57:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testTransactionSupportLevels_setup -11-19-2024 17:57:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:57:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testTransactionSupportLevels_cleanup -11-19-2024 17:57:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:57:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:59: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:57:59: SVR: dsource JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4f391782 -11-19-2024 17:57:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:59: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 17:57:59: SVR: Methods called correctly -11-19-2024 17:57:59: SVR: Performing end to end verification... -11-19-2024 17:57:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:57:59: SVR: Values inserted into table! -11-19-2024 17:57:59: SVR: Table has been dropped! -11-19-2024 17:57:59: SVR: Cleanup -11-19-2024 17:57:59: SVR: Test running in jsp vehicle passed -11-19-2024 17:57:59: Test status from a jsp: 0: -11-19-2024 17:57:59: Test: returning from running in a jsp vehicle -11-19-2024 17:57:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:57:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.connManager.connManagerClient1, vehicle: jsp -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:57:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.connManager.connManagerClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=connManager_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:57:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:57:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:57:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:57:59: TRACE: in ServiceEETest.run() method -11-19-2024 17:57:59: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:57:59: Opened connection to http://localhost:8080/connManager_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:57:59: TRACE: got outputstream -11-19-2024 17:57:59: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:57:59: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:57:59: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:57:59: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:57:59: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:57:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testcheckConnectionManagernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=connManager_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.connManager.connManagerClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:57:59: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:57:59: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:57:59: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:57:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_jsp_vehicle/connManager_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/connManager/connManagerClient1.class -11-19-2024 17:57:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_jsp_vehicle/connManager_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_jsp_vehicle/connManager_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:57:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:57:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:57:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:57:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:57:59: SVR-TRACE: ** IN getRunMethod: testname=testcheckConnectionManager -11-19-2024 17:57:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:57:59: SVR-TRACE: **runmethod=testcheckConnectionManager -11-19-2024 17:57:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:57:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:57:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testcheckConnectionManager_setup -11-19-2024 17:57:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:57:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:57:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:57:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testcheckConnectionManager_cleanup -11-19-2024 17:57:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:57:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:57:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:57:59: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:57:59: SVR: dsource JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@48454547 -11-19-2024 17:57:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:57:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:57:59: SVR: Connection Manager is Serializable -11-19-2024 17:57:59: SVR: Cleanup -11-19-2024 17:57:59: SVR: Test running in jsp vehicle passed -11-19-2024 17:57:59: Test status from a jsp: 0: -11-19-2024 17:57:59: Test: returning from running in a jsp vehicle -11-19-2024 17:57:59: TRACE: SLEPT FOR: 0 -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 24.697 s - in com.sun.ts.tests.connector.connManager.connManagerClient1JspTest -[INFO] Running com.sun.ts.tests.connector.connManager.connManagerClient1ServletTest -Nov 19, 2024 5:57:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:57:59 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:57:59 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:13 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.connManager.connManagerClient1, vehicle: servlet -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.connManager.connManagerClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=connManager_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:13: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:13: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:13: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:13: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:13: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:13: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:13: Opened connection to http://localhost:8080/connManager_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:13: TRACE: got outputstream -11-19-2024 17:58:13: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:13: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:58:13: SVR-TRACE: In doPost -11-19-2024 17:58:13: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:13: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:13: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:13: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:13: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:13: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testTransactionSupportLevelsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=connManager_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.connManager.connManagerClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:13: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_servlet_vehicle/connManager_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/connManager/connManagerClient1.class -11-19-2024 17:58:13: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_servlet_vehicle/connManager_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:13: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_servlet_vehicle/connManager_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:13: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:13: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:13: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:58:13: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:58:13: SVR-TRACE: ** IN getRunMethod: testname=testTransactionSupportLevels -11-19-2024 17:58:13: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:13: SVR-TRACE: **runmethod=testTransactionSupportLevels -11-19-2024 17:58:13: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:13: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:13: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testTransactionSupportLevels_setup -11-19-2024 17:58:13: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:13: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:58:13: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:13: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testTransactionSupportLevels_cleanup -11-19-2024 17:58:13: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:13: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:58:13: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:13: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:13: SVR: dsource JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@5086de82 -11-19-2024 17:58:13: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:13: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:13: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 17:58:13: SVR: Methods called correctly -11-19-2024 17:58:13: SVR: Performing end to end verification... -11-19-2024 17:58:13: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:13: SVR: Values inserted into table! -11-19-2024 17:58:13: SVR: Table has been dropped! -11-19-2024 17:58:13: SVR: Cleanup -11-19-2024 17:58:13: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:13: Test status from a servlet: 0: -11-19-2024 17:58:13: Test: returning from running in a servlet vehicle -11-19-2024 17:58:13: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:13 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.connManager.connManagerClient1, vehicle: servlet -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:13 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.connManager.connManagerClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=connManager_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:13: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:13: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:13: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:13: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:13: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:13: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:13: Opened connection to http://localhost:8080/connManager_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:13: TRACE: got outputstream -11-19-2024 17:58:13: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:13: SVR-TRACE: In doPost -11-19-2024 17:58:13: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:13: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:13: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:13: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:13: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:13: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testcheckConnectionManagernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=connManager_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.connManager.connManagerClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:13: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_servlet_vehicle/connManager_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/connManager/connManagerClient1.class -11-19-2024 17:58:13: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_servlet_vehicle/connManager_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:13: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connManager_servlet_vehicle/connManager_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:13: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:13: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:13: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:58:13: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:58:13: SVR-TRACE: ** IN getRunMethod: testname=testcheckConnectionManager -11-19-2024 17:58:13: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:13: SVR-TRACE: **runmethod=testcheckConnectionManager -11-19-2024 17:58:13: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:13: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:13: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testcheckConnectionManager_setup -11-19-2024 17:58:13: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:13: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:58:13: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:13: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testcheckConnectionManager_cleanup -11-19-2024 17:58:13: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:13: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.connManager.connManagerClient1 -11-19-2024 17:58:13: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:13: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:13: SVR: dsource JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@64d56688 -11-19-2024 17:58:13: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:13: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:13: SVR: Connection Manager is Serializable -11-19-2024 17:58:13: SVR: Cleanup -11-19-2024 17:58:13: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:13: Test status from a servlet: 0: -11-19-2024 17:58:13: Test: returning from running in a servlet vehicle -11-19-2024 17:58:13: TRACE: SLEPT FOR: 0 -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.435 s - in com.sun.ts.tests.connector.connManager.connManagerClient1ServletTest -[INFO] Running com.sun.ts.tests.connector.localTx.connection.connectionClient1JspTest -Nov 19, 2024 5:58:13 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:20 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:20 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:20 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:22 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:24 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIApplicationServerInternalExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIApplicationServerInternalException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIApplicationServerInternalException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIApplicationServerInternalException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIApplicationServerInternalException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: ApplicationServerInternalException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPICommExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPICommException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPICommException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPICommException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPICommException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: CommException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIEISSystemExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIEISSystemException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIEISSystemException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIEISSystemException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIEISSystemException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: EISSystemException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIHintsContextnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIHintsContext -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIHintsContext -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIHintsContext_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIHintsContext_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: InvalidPropertyException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIIllegalStateExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIIllegalStateException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIIllegalStateException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIIllegalStateException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIIllegalStateException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: IllegalStateException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIInvalidPropertyExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIInvalidPropertyException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIInvalidPropertyException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIInvalidPropertyException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIInvalidPropertyException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: InvalidPropertyException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPILocalTransactionExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPILocalTransactionException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPILocalTransactionException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPILocalTransactionException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPILocalTransactionException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: SVR: LocalTransactionException API assertions passed -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIManagedConnectionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIManagedConnection -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIManagedConnection -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIManagedConnection_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIManagedConnection_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: SVR: ManagedConnectionMetaData API assertions passed -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIManagedConnectionMetaDatanullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIManagedConnectionMetaData -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIManagedConnectionMetaData -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIManagedConnectionMetaData_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIManagedConnectionMetaData_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: ManagedConnectionMetaData API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPINotSupportedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPINotSupportedException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPINotSupportedException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPINotSupportedException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPINotSupportedException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: NotSupportedException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIResourceAdapterInternalExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIResourceAdapterInternalException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIResourceAdapterInternalException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIResourceAdapterInternalException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIResourceAdapterInternalException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: ResourceAdapterInternalException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIResourceAllocationExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIResourceAllocationException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIResourceAllocationException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIResourceAllocationException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIResourceAllocationException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: ResourceAllocationException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIResourceExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIResourceException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIResourceException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIResourceException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIResourceException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: ResourceException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIRetryableUnavailableExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIRetryableUnavailableException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIRetryableUnavailableException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIRetryableUnavailableException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIRetryableUnavailableException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: RetryableUnavailableException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIRetryableWorkRejectedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIRetryableWorkRejectedException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIRetryableWorkRejectedException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIRetryableWorkRejectedException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIRetryableWorkRejectedException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: RetryableWorkRejectedException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPISecurityExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPISecurityException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPISecurityException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPISecurityException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPISecurityException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: SecurityException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPISharingViolationExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPISharingViolationException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPISharingViolationException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPISharingViolationException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPISharingViolationException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: SharingViolationException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIUnavailableExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIUnavailableException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIUnavailableException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIUnavailableException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIUnavailableException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: UnavailableException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIWorkCompletedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIWorkCompletedException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIWorkCompletedException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIWorkCompletedException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIWorkCompletedException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: WorkCompletedException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIWorkExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIWorkException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIWorkException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIWorkException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIWorkException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: SVR: WorkException API assertions passed -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIWorkRejectedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testAPIWorkRejectedException -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testAPIWorkRejectedException -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIWorkRejectedException_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIWorkRejectedException_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:26: SVR: WorkRejectedException API assertions passed -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testGetConnection1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testGetConnection1 -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testGetConnection1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testGetConnection1_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testGetConnection1_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Got connection from the DataSource. -11-19-2024 17:58:26: SVR: Checking for Connection Validity. -11-19-2024 17:58:26: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:26: SVR-ERROR: Exception inserting into table. -11-19-2024 17:58:26: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:144) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 17:58:26: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:144) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 17:58:26: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:26: SVR-ERROR: Exception at: -11-19-2024 17:58:26: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:150) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle failed -11-19-2024 17:58:26: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:26 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:26: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:26: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:26: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:26: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:26: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:26: Opened connection to http://localhost:8080/localTx_conn_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:26: TRACE: got outputstream -11-19-2024 17:58:26: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:26: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:26: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testgetConnectionWithParameter1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:26: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:26: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:26: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_jsp_vehicle/localTx_conn_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:26: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:26: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:26: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ** IN getRunMethod: testname=testgetConnectionWithParameter1 -11-19-2024 17:58:26: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:26: SVR-TRACE: **runmethod=testgetConnectionWithParameter1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testgetConnectionWithParameter1_setup -11-19-2024 17:58:26: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:26: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testgetConnectionWithParameter1_cleanup -11-19-2024 17:58:26: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:26: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:26: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:26: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:26: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:26: SVR: Performing callback verification... -11-19-2024 17:58:26: SVR: Got RA log. -11-19-2024 17:58:26: SVR-TRACE: Got connection. -11-19-2024 17:58:26: SVR-TRACE: [TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.setLogWriter:out:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:] -11-19-2024 17:58:26: Test status from a jsp: 0: -11-19-2024 17:58:26: SVR: Methods called correctly -11-19-2024 17:58:26: Test: returning from running in a jsp vehicle -11-19-2024 17:58:26: SVR: Performing end to end verification... -11-19-2024 17:58:26: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:26: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:26: SVR: Values inserted into table! -11-19-2024 17:58:26: SVR: Table has been dropped! -11-19-2024 17:58:26: SVR: Cleanup -11-19-2024 17:58:26: SVR: Test running in jsp vehicle passed -[ERROR] Tests run: 23, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 13.126 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.connection.connectionClient1JspTest -[ERROR] com.sun.ts.tests.connector.localTx.connection.connectionClient1JspTest.testGetConnection1 Time elapsed: 0.023 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.localTx.connection.connectionClient1ServletTest -Nov 19, 2024 5:58:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:27 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:27 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:27 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:28 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:28 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:28 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:29 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:29 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:31 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:31 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:32 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:32 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIApplicationServerInternalExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIApplicationServerInternalException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIApplicationServerInternalException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIApplicationServerInternalException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIApplicationServerInternalException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: ApplicationServerInternalException API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPICommExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPICommException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPICommException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPICommException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPICommException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: CommException API assertions passed -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIEISSystemExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIEISSystemException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIEISSystemException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIEISSystemException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIEISSystemException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: EISSystemException API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIHintsContextnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIHintsContext -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIHintsContext -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIHintsContext_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIHintsContext_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: InvalidPropertyException API assertions passed -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIIllegalStateExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIIllegalStateException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIIllegalStateException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIIllegalStateException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIIllegalStateException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: IllegalStateException API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIInvalidPropertyExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIInvalidPropertyException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIInvalidPropertyException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIInvalidPropertyException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIInvalidPropertyException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: InvalidPropertyException API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPILocalTransactionExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPILocalTransactionException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPILocalTransactionException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPILocalTransactionException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPILocalTransactionException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: SVR: LocalTransactionException API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIManagedConnectionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIManagedConnection -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIManagedConnection -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIManagedConnection_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIManagedConnection_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: ManagedConnectionMetaData API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIManagedConnectionMetaDatanullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIManagedConnectionMetaData -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIManagedConnectionMetaData -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIManagedConnectionMetaData_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIManagedConnectionMetaData_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: ManagedConnectionMetaData API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPINotSupportedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPINotSupportedException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPINotSupportedException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPINotSupportedException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPINotSupportedException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:33: SVR: NotSupportedException API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIResourceAdapterInternalExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIResourceAdapterInternalException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIResourceAdapterInternalException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIResourceAdapterInternalException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIResourceAdapterInternalException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: ResourceAdapterInternalException API assertions passed -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIResourceAllocationExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIResourceAllocationException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIResourceAllocationException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIResourceAllocationException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIResourceAllocationException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: ResourceAllocationException API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIResourceExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIResourceException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIResourceException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIResourceException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIResourceException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: ResourceException API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIRetryableUnavailableExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIRetryableUnavailableException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIRetryableUnavailableException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIRetryableUnavailableException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIRetryableUnavailableException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:33: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:33: SVR: RetryableUnavailableException API assertions passed -11-19-2024 17:58:33: SVR: Cleanup -11-19-2024 17:58:33: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:33: Test status from a servlet: 0: -11-19-2024 17:58:33: Test: returning from running in a servlet vehicle -11-19-2024 17:58:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:33: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:33: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:33: TRACE: got outputstream -11-19-2024 17:58:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:33: SVR-TRACE: In doPost -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIRetryableWorkRejectedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ** IN getRunMethod: testname=testAPIRetryableWorkRejectedException -11-19-2024 17:58:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:33: SVR-TRACE: **runmethod=testAPIRetryableWorkRejectedException -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIRetryableWorkRejectedException_setup -11-19-2024 17:58:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIRetryableWorkRejectedException_cleanup -11-19-2024 17:58:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:33: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:33: SVR: Performing callback verification... -11-19-2024 17:58:33: SVR-TRACE: Got connection. -11-19-2024 17:58:33: SVR: Got RA log. -11-19-2024 17:58:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:34: SVR: RetryableWorkRejectedException API assertions passed -11-19-2024 17:58:34: Test status from a servlet: 0: -11-19-2024 17:58:34: SVR: Cleanup -11-19-2024 17:58:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:34: Test: returning from running in a servlet vehicle -11-19-2024 17:58:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:34: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:34: TRACE: got outputstream -11-19-2024 17:58:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:34: SVR-TRACE: In doPost -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPISecurityExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testname=testAPISecurityException -11-19-2024 17:58:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:34: SVR-TRACE: **runmethod=testAPISecurityException -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPISecurityException_setup -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPISecurityException_cleanup -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:34: SVR: Performing callback verification... -11-19-2024 17:58:34: SVR-TRACE: Got connection. -11-19-2024 17:58:34: SVR: Got RA log. -11-19-2024 17:58:34: Test status from a servlet: 0: -11-19-2024 17:58:34: Test: returning from running in a servlet vehicle -11-19-2024 17:58:34: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:34: SVR: SecurityException API assertions passed -11-19-2024 17:58:34: SVR: Cleanup -11-19-2024 17:58:34: SVR: Test running in servlet vehicle passed -Nov 19, 2024 5:58:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:34: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:34: TRACE: got outputstream -11-19-2024 17:58:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:34: SVR-TRACE: In doPost -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPISharingViolationExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testname=testAPISharingViolationException -11-19-2024 17:58:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:34: SVR-TRACE: **runmethod=testAPISharingViolationException -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPISharingViolationException_setup -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPISharingViolationException_cleanup -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:34: SVR: Performing callback verification... -11-19-2024 17:58:34: SVR-TRACE: Got connection. -11-19-2024 17:58:34: SVR: Got RA log. -11-19-2024 17:58:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:34: SVR: SharingViolationException API assertions passed -11-19-2024 17:58:34: SVR: Cleanup -11-19-2024 17:58:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:34: Test status from a servlet: 0: -11-19-2024 17:58:34: Test: returning from running in a servlet vehicle -11-19-2024 17:58:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:34: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:34: TRACE: got outputstream -11-19-2024 17:58:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:34: SVR-TRACE: In doPost -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIUnavailableExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testname=testAPIUnavailableException -11-19-2024 17:58:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:34: SVR-TRACE: **runmethod=testAPIUnavailableException -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIUnavailableException_setup -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIUnavailableException_cleanup -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:34: SVR: Performing callback verification... -11-19-2024 17:58:34: SVR-TRACE: Got connection. -11-19-2024 17:58:34: SVR: Got RA log. -11-19-2024 17:58:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:34: Test status from a servlet: 0: -11-19-2024 17:58:34: SVR: UnavailableException API assertions passed -11-19-2024 17:58:34: SVR: Cleanup -11-19-2024 17:58:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:34: Test: returning from running in a servlet vehicle -11-19-2024 17:58:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:34: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:34: TRACE: got outputstream -11-19-2024 17:58:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:34: SVR-TRACE: In doPost -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIWorkCompletedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testname=testAPIWorkCompletedException -11-19-2024 17:58:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:34: SVR-TRACE: **runmethod=testAPIWorkCompletedException -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIWorkCompletedException_setup -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIWorkCompletedException_cleanup -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:34: SVR: Performing callback verification... -11-19-2024 17:58:34: SVR-TRACE: Got connection. -11-19-2024 17:58:34: SVR: Got RA log. -11-19-2024 17:58:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:34: SVR: WorkCompletedException API assertions passed -11-19-2024 17:58:34: SVR: Cleanup -11-19-2024 17:58:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:34: Test status from a servlet: 0: -11-19-2024 17:58:34: Test: returning from running in a servlet vehicle -11-19-2024 17:58:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:34: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:34: TRACE: got outputstream -11-19-2024 17:58:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:34: SVR-TRACE: In doPost -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIWorkExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testname=testAPIWorkException -11-19-2024 17:58:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:34: SVR-TRACE: **runmethod=testAPIWorkException -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIWorkException_setup -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIWorkException_cleanup -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:34: SVR: Performing callback verification... -11-19-2024 17:58:34: SVR-TRACE: Got connection. -11-19-2024 17:58:34: SVR: Got RA log. -11-19-2024 17:58:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:34: Test status from a servlet: 0: -11-19-2024 17:58:34: SVR: WorkException API assertions passed -11-19-2024 17:58:34: SVR: Cleanup -11-19-2024 17:58:34: Test: returning from running in a servlet vehicle -11-19-2024 17:58:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:34: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:34: TRACE: got outputstream -11-19-2024 17:58:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:34: SVR-TRACE: In doPost -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAPIWorkRejectedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testname=testAPIWorkRejectedException -11-19-2024 17:58:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:34: SVR-TRACE: **runmethod=testAPIWorkRejectedException -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAPIWorkRejectedException_setup -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAPIWorkRejectedException_cleanup -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:34: SVR: Performing callback verification... -11-19-2024 17:58:34: SVR-TRACE: Got connection. -11-19-2024 17:58:34: SVR: Got RA log. -11-19-2024 17:58:34: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:34: SVR: WorkRejectedException API assertions passed -11-19-2024 17:58:34: Test status from a servlet: 0: -11-19-2024 17:58:34: SVR: Cleanup -11-19-2024 17:58:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:34: Test: returning from running in a servlet vehicle -11-19-2024 17:58:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:34: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:34: TRACE: got outputstream -11-19-2024 17:58:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:34: SVR-TRACE: In doPost -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testGetConnection1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testname=testGetConnection1 -11-19-2024 17:58:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:34: SVR-TRACE: **runmethod=testGetConnection1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testGetConnection1_setup -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testGetConnection1_cleanup -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:34: SVR: Got connection from the DataSource. -11-19-2024 17:58:34: SVR: Checking for Connection Validity. -11-19-2024 17:58:34: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:34: SVR-ERROR: Exception inserting into table. -11-19-2024 17:58:34: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:144) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 17:58:34: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:144) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 17:58:34: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:34: SVR-ERROR: Exception at: -11-19-2024 17:58:34: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:150) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 17:58:34: SVR: Cleanup -11-19-2024 17:58:34: SVR: Test running in servlet vehicle failed -11-19-2024 17:58:34: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:34: Test: returning from running in a servlet vehicle -11-19-2024 17:58:34: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:34 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_conn_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:34: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:34: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:34: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:34: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:34: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:34: Opened connection to http://localhost:8080/localTx_conn_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:34: TRACE: got outputstream -11-19-2024 17:58:34: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:34: SVR-TRACE: In doPost -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:34: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:34: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:34: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testgetConnectionWithParameter1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_conn_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:34: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/connection/connectionClient1.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_conn_servlet_vehicle/localTx_conn_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:34: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:34: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:34: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ** IN getRunMethod: testname=testgetConnectionWithParameter1 -11-19-2024 17:58:34: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:34: SVR-TRACE: **runmethod=testgetConnectionWithParameter1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testgetConnectionWithParameter1_setup -11-19-2024 17:58:34: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:34: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testgetConnectionWithParameter1_cleanup -11-19-2024 17:58:34: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:34: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.connection.connectionClient1 -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:34: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:58:34: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:34: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:34: SVR: Performing callback verification... -11-19-2024 17:58:34: SVR: Got RA log. -11-19-2024 17:58:34: SVR-TRACE: Got connection. -11-19-2024 17:58:34: SVR-TRACE: [TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.setLogWriter:out:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:] -11-19-2024 17:58:34: SVR: Methods called correctly -11-19-2024 17:58:34: SVR: Performing end to end verification... -11-19-2024 17:58:34: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:34: SVR: Values inserted into table! -11-19-2024 17:58:34: SVR: Table has been dropped! -11-19-2024 17:58:34: SVR: Cleanup -11-19-2024 17:58:34: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:34: Test status from a servlet: 0: -11-19-2024 17:58:34: Test: returning from running in a servlet vehicle -11-19-2024 17:58:34: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 23, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 7.444 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.connection.connectionClient1ServletTest -[ERROR] com.sun.ts.tests.connector.localTx.connection.connectionClient1ServletTest.testGetConnection1 Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.localTx.event.eventClient1JspTest -Nov 19, 2024 5:58:34 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:34 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:36 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:36 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:36 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:37 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:37 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:39 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.event.eventClient1, vehicle: jsp -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:39 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.event.eventClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_event_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:39: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:39: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:39: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:39: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:39: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:39: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:39: Opened connection to http://localhost:8080/localTx_event_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:39: TRACE: got outputstream -11-19-2024 17:58:39: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:39: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:39: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:39: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:39: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:39: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnectionEventListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_event_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.event.eventClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:39: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:39: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:39: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:39: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_event_jsp_vehicle/localTx_event_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/event/eventClient1.class -11-19-2024 17:58:39: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_event_jsp_vehicle/localTx_event_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:39: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_event_jsp_vehicle/localTx_event_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:39: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:39: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:39: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.event.eventClient1 -11-19-2024 17:58:39: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.event.eventClient1 -11-19-2024 17:58:39: SVR-TRACE: ** IN getRunMethod: testname=testConnectionEventListener -11-19-2024 17:58:39: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:39: SVR-TRACE: **runmethod=testConnectionEventListener -11-19-2024 17:58:39: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:39: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:39: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnectionEventListener_setup -11-19-2024 17:58:39: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:39: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.event.eventClient1 -11-19-2024 17:58:39: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:39: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnectionEventListener_cleanup -11-19-2024 17:58:39: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:39: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.event.eventClient1 -11-19-2024 17:58:39: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:39: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:39: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:39: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:39: SVR: Got connection. -11-19-2024 17:58:39: SVR-TRACE: [TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.setLogWriter:out:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:] -11-19-2024 17:58:39: Test status from a jsp: 0: -11-19-2024 17:58:39: SVR: CONNECTION_CLOSED called correctly. -11-19-2024 17:58:39: Test: returning from running in a jsp vehicle -11-19-2024 17:58:39: SVR: Cleanup -11-19-2024 17:58:39: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:39: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:58:39: SVR: Test running in jsp vehicle passed -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.776 s - in com.sun.ts.tests.connector.localTx.event.eventClient1JspTest -[INFO] Running com.sun.ts.tests.connector.localTx.event.eventClient1ServletTest -Nov 19, 2024 5:58:40 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:40 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:40 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:40 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:41 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:41 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:42 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:42 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:43 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:43 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:43 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:44 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:45 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:46 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.event.eventClient1, vehicle: servlet -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:46 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.event.eventClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_event_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:46: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:46: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:46: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:46: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:46: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:46: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:46: Opened connection to http://localhost:8080/localTx_event_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:46: TRACE: got outputstream -11-19-2024 17:58:46: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:46: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:58:46: SVR-TRACE: In doPost -11-19-2024 17:58:46: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:46: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:46: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:46: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:46: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:46: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnectionEventListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_event_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.event.eventClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:46: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_event_servlet_vehicle/localTx_event_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/event/eventClient1.class -11-19-2024 17:58:46: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_event_servlet_vehicle/localTx_event_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:46: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_event_servlet_vehicle/localTx_event_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:46: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:46: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:46: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.event.eventClient1 -11-19-2024 17:58:46: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.event.eventClient1 -11-19-2024 17:58:46: SVR-TRACE: ** IN getRunMethod: testname=testConnectionEventListener -11-19-2024 17:58:46: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:46: SVR-TRACE: **runmethod=testConnectionEventListener -11-19-2024 17:58:46: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:46: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:46: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnectionEventListener_setup -11-19-2024 17:58:46: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:46: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.event.eventClient1 -11-19-2024 17:58:46: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:46: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnectionEventListener_cleanup -11-19-2024 17:58:46: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:46: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.event.eventClient1 -11-19-2024 17:58:46: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:46: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:46: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:46: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:46: SVR: Got connection. -11-19-2024 17:58:46: SVR-TRACE: [TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.setLogWriter:out:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:] -11-19-2024 17:58:46: SVR: CONNECTION_CLOSED called correctly. -11-19-2024 17:58:46: SVR: Cleanup -11-19-2024 17:58:46: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:58:46: Test status from a servlet: 0: -11-19-2024 17:58:46: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:46: Test: returning from running in a servlet vehicle -11-19-2024 17:58:46: TRACE: SLEPT FOR: 0 -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.988 s - in com.sun.ts.tests.connector.localTx.event.eventClient1ServletTest -[INFO] Running com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1JspTest -Nov 19, 2024 5:58:47 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:47 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:47 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:48 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:48 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:50 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:50 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:50 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:52 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:52 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:52: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:52: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:52: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:52: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:52: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:52: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:52: Opened connection to http://localhost:8080/localTx_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:52: TRACE: got outputstream -11-19-2024 17:58:52: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:53: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA -11-19-2024 17:58:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:53: SVR-TRACE: **runmethod=testAssociationMCFandRA -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA_setup -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA_cleanup -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:53: SVR: Performing callback verification... -11-19-2024 17:58:53: SVR: Got RA log. -11-19-2024 17:58:53: SVR-TRACE: Got connection. -11-19-2024 17:58:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:53: SVR: Methods called correctly -11-19-2024 17:58:53: SVR: Performing end to end verification... -11-19-2024 17:58:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:53: SVR: Exception inserting into table. -11-19-2024 17:58:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: SVR-ERROR: Exception at: -11-19-2024 17:58:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:155) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:151) - ... 41 more - -11-19-2024 17:58:53: SVR: Cleanup -11-19-2024 17:58:53: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: SVR: Test running in jsp vehicle failed -11-19-2024 17:58:53: Test: returning from running in a jsp vehicle -11-19-2024 17:58:53: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:53: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:53: Opened connection to http://localhost:8080/localTx_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:53: TRACE: got outputstream -11-19-2024 17:58:53: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRA2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:53: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA2 -11-19-2024 17:58:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:53: SVR-TRACE: **runmethod=testAssociationMCFandRA2 -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA2_setup -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA2_cleanup -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:53: SVR: Performing callback verification... -11-19-2024 17:58:53: SVR: Got RA log. -11-19-2024 17:58:53: SVR-TRACE: Got connection. -11-19-2024 17:58:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:53: SVR: testAssociationMCFandRA2 called correctly -11-19-2024 17:58:53: SVR: Cleanup -11-19-2024 17:58:53: SVR: Test running in jsp vehicle passed -11-19-2024 17:58:53: Test status from a jsp: 0: -11-19-2024 17:58:53: Test: returning from running in a jsp vehicle -11-19-2024 17:58:53: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:53: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:53: Opened connection to http://localhost:8080/localTx_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:53: TRACE: got outputstream -11-19-2024 17:58:53: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testBootstrapforNullnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:53: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testname=testBootstrapforNull -11-19-2024 17:58:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:53: SVR-TRACE: **runmethod=testBootstrapforNull -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testBootstrapforNull_setup -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testBootstrapforNull_cleanup -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:53: SVR: Performing callback verification... -11-19-2024 17:58:53: SVR: Got RA log. -11-19-2024 17:58:53: SVR-TRACE: Got connection. -11-19-2024 17:58:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:53: SVR: Methods called correctly -11-19-2024 17:58:53: SVR: Performing end to end verification... -11-19-2024 17:58:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:53: SVR: Exception inserting into table. -11-19-2024 17:58:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: SVR-ERROR: Exception at: -11-19-2024 17:58:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:354) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:350) - ... 41 more - -11-19-2024 17:58:53: SVR: Cleanup -11-19-2024 17:58:53: SVR: Test running in jsp vehicle failed -11-19-2024 17:58:53: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: Test: returning from running in a jsp vehicle -11-19-2024 17:58:53: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:53: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:53: Opened connection to http://localhost:8080/localTx_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:53: TRACE: got outputstream -11-19-2024 17:58:53: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testInstantiationOfRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:53: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testname=testInstantiationOfRA -11-19-2024 17:58:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:53: SVR-TRACE: **runmethod=testInstantiationOfRA -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testInstantiationOfRA_setup -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testInstantiationOfRA_cleanup -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:53: SVR: Performing callback verification... -11-19-2024 17:58:53: SVR: Got RA log. -11-19-2024 17:58:53: SVR-TRACE: Got connection. -11-19-2024 17:58:53: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: Test: returning from running in a jsp vehicle -11-19-2024 17:58:53: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:53: SVR: Methods called correctly -11-19-2024 17:58:53: SVR: Performing end to end verification... -11-19-2024 17:58:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:53: SVR: Exception inserting into table. -11-19-2024 17:58:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: SVR-ERROR: Exception at: -11-19-2024 17:58:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:281) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:277) - ... 41 more - -11-19-2024 17:58:53: SVR: Cleanup -11-19-2024 17:58:53: SVR: Test running in jsp vehicle failed -Nov 19, 2024 5:58:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:53: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:53: Opened connection to http://localhost:8080/localTx_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:53: TRACE: got outputstream -11-19-2024 17:58:53: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMCFcalledOncenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:53: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testname=testMCFcalledOnce -11-19-2024 17:58:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:53: SVR-TRACE: **runmethod=testMCFcalledOnce -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMCFcalledOnce_setup -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMCFcalledOnce_cleanup -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:53: SVR: Performing callback verification... -11-19-2024 17:58:53: SVR: Got RA log. -11-19-2024 17:58:53: SVR-TRACE: Got connection. -11-19-2024 17:58:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:53: SVR: Methods called correctly -11-19-2024 17:58:53: SVR: Performing end to end verification... -11-19-2024 17:58:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:53: SVR: Exception inserting into table. -11-19-2024 17:58:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: SVR-ERROR: Exception at: -11-19-2024 17:58:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:504) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:500) - ... 41 more - -11-19-2024 17:58:53: SVR: Cleanup -11-19-2024 17:58:53: SVR: Test running in jsp vehicle failed -11-19-2024 17:58:53: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: Test: returning from running in a jsp vehicle -11-19-2024 17:58:53: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:53: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:53: Opened connection to http://localhost:8080/localTx_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:53: TRACE: got outputstream -11-19-2024 17:58:53: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRASharabilitynullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:53: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testname=testRASharability -11-19-2024 17:58:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:53: SVR-TRACE: **runmethod=testRASharability -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRASharability_setup -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRASharability_cleanup -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:53: SVR: Performing callback verification... -11-19-2024 17:58:53: SVR: Got RA log. -11-19-2024 17:58:53: SVR-TRACE: Got connection. -11-19-2024 17:58:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:53: SVR: Methods called correctly -11-19-2024 17:58:53: SVR: Performing end to end verification... -11-19-2024 17:58:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:53: SVR: Exception inserting into table. -11-19-2024 17:58:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: SVR-ERROR: Exception at: -11-19-2024 17:58:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:431) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:427) - ... 41 more - -11-19-2024 17:58:53: SVR: Cleanup -11-19-2024 17:58:53: SVR: Test running in jsp vehicle failed -11-19-2024 17:58:53: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: Test: returning from running in a jsp vehicle -11-19-2024 17:58:53: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:53: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:58:53: Opened connection to http://localhost:8080/localTx_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:58:53: TRACE: got outputstream -11-19-2024 17:58:53: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:58:53: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:58:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRAforJavaBeannullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:58:53: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:58:53: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:58:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_jsp_vehicle/localTx_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ** IN getRunMethod: testname=testRAforJavaBean -11-19-2024 17:58:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:53: SVR-TRACE: **runmethod=testRAforJavaBean -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRAforJavaBean_setup -11-19-2024 17:58:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRAforJavaBean_cleanup -11-19-2024 17:58:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:53: SVR: Performing callback verification... -11-19-2024 17:58:53: SVR: Got RA log. -11-19-2024 17:58:53: SVR-TRACE: Got connection. -11-19-2024 17:58:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:53: SVR: Methods called correctly -11-19-2024 17:58:53: SVR: Performing end to end verification... -11-19-2024 17:58:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:53: SVR: Exception inserting into table. -11-19-2024 17:58:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: SVR-ERROR: Exception at: -11-19-2024 17:58:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:577) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:573) - ... 41 more - -11-19-2024 17:58:53: SVR: Cleanup -11-19-2024 17:58:53: SVR: Test running in jsp vehicle failed -11-19-2024 17:58:53: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:53: Test: returning from running in a jsp vehicle -11-19-2024 17:58:53: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 7, Failures: 0, Errors: 6, Skipped: 0, Time elapsed: 6.365 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1JspTest -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1JspTest.testAssociationMCFandRA Time elapsed: 0.231 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1JspTest.testBootstrapforNull Time elapsed: 0.023 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1JspTest.testInstantiationOfRA Time elapsed: 0.021 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1JspTest.testMCFcalledOnce Time elapsed: 0.025 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1JspTest.testRASharability Time elapsed: 0.024 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1JspTest.testRAforJavaBean Time elapsed: 0.031 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1ServletTest -Nov 19, 2024 5:58:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:53 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:54 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:58:58 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:58:58 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:58:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:59: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:59: Opened connection to http://localhost:8080/localTx_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:59: TRACE: got outputstream -11-19-2024 17:58:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:59: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:58:59: SVR-TRACE: In doPost -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA -11-19-2024 17:58:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:59: SVR-TRACE: **runmethod=testAssociationMCFandRA -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA_setup -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA_cleanup -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:59: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:59: SVR: Performing callback verification... -11-19-2024 17:58:59: SVR: Got RA log. -11-19-2024 17:58:59: SVR-TRACE: Got connection. -11-19-2024 17:58:59: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:59: SVR: Methods called correctly -11-19-2024 17:58:59: SVR: Performing end to end verification... -11-19-2024 17:58:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:59: SVR: Exception inserting into table. -11-19-2024 17:58:59: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR-ERROR: Exception at: -11-19-2024 17:58:59: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:155) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:151) - ... 38 more - -11-19-2024 17:58:59: SVR: Cleanup -11-19-2024 17:58:59: SVR: Test running in servlet vehicle failed -11-19-2024 17:58:59: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: Test: returning from running in a servlet vehicle -11-19-2024 17:58:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:59: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:59: Opened connection to http://localhost:8080/localTx_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:59: TRACE: got outputstream -11-19-2024 17:58:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:59: SVR-TRACE: In doPost -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRA2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA2 -11-19-2024 17:58:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:59: SVR-TRACE: **runmethod=testAssociationMCFandRA2 -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA2_setup -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA2_cleanup -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:59: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:59: SVR: Performing callback verification... -11-19-2024 17:58:59: SVR: Got RA log. -11-19-2024 17:58:59: SVR-TRACE: Got connection. -11-19-2024 17:58:59: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:59: Test status from a servlet: 0: -11-19-2024 17:58:59: SVR: testAssociationMCFandRA2 called correctly -11-19-2024 17:58:59: SVR: Cleanup -11-19-2024 17:58:59: Test: returning from running in a servlet vehicle -11-19-2024 17:58:59: SVR: Test running in servlet vehicle passed -11-19-2024 17:58:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:59: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:59: Opened connection to http://localhost:8080/localTx_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:59: TRACE: got outputstream -11-19-2024 17:58:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:59: SVR-TRACE: In doPost -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testBootstrapforNullnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testname=testBootstrapforNull -11-19-2024 17:58:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:59: SVR-TRACE: **runmethod=testBootstrapforNull -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testBootstrapforNull_setup -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testBootstrapforNull_cleanup -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:59: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:59: SVR: Performing callback verification... -11-19-2024 17:58:59: SVR: Got RA log. -11-19-2024 17:58:59: SVR-TRACE: Got connection. -11-19-2024 17:58:59: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:59: SVR: Methods called correctly -11-19-2024 17:58:59: SVR: Performing end to end verification... -11-19-2024 17:58:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:59: SVR: Exception inserting into table. -11-19-2024 17:58:59: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR-ERROR: Exception at: -11-19-2024 17:58:59: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:354) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:350) - ... 38 more - -11-19-2024 17:58:59: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR: Cleanup -11-19-2024 17:58:59: SVR: Test running in servlet vehicle failed -11-19-2024 17:58:59: Test: returning from running in a servlet vehicle -11-19-2024 17:58:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:59: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:59: Opened connection to http://localhost:8080/localTx_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:59: TRACE: got outputstream -11-19-2024 17:58:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:59: SVR-TRACE: In doPost -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testInstantiationOfRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testname=testInstantiationOfRA -11-19-2024 17:58:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:59: SVR-TRACE: **runmethod=testInstantiationOfRA -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testInstantiationOfRA_setup -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testInstantiationOfRA_cleanup -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:59: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:59: SVR: Performing callback verification... -11-19-2024 17:58:59: SVR: Got RA log. -11-19-2024 17:58:59: SVR-TRACE: Got connection. -11-19-2024 17:58:59: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:59: SVR: Methods called correctly -11-19-2024 17:58:59: SVR: Performing end to end verification... -11-19-2024 17:58:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:59: SVR: Exception inserting into table. -11-19-2024 17:58:59: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR-ERROR: Exception at: -11-19-2024 17:58:59: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:281) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:277) - ... 38 more - -11-19-2024 17:58:59: Test: returning from running in a servlet vehicle -11-19-2024 17:58:59: SVR: Cleanup -11-19-2024 17:58:59: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:59: SVR: Test running in servlet vehicle failed -Nov 19, 2024 5:58:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:59: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:59: Opened connection to http://localhost:8080/localTx_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:59: TRACE: got outputstream -11-19-2024 17:58:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:59: SVR-TRACE: In doPost -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMCFcalledOncenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testname=testMCFcalledOnce -11-19-2024 17:58:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:59: SVR-TRACE: **runmethod=testMCFcalledOnce -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMCFcalledOnce_setup -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMCFcalledOnce_cleanup -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:59: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:59: SVR: Performing callback verification... -11-19-2024 17:58:59: SVR: Got RA log. -11-19-2024 17:58:59: SVR-TRACE: Got connection. -11-19-2024 17:58:59: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:59: SVR: Methods called correctly -11-19-2024 17:58:59: SVR: Performing end to end verification... -11-19-2024 17:58:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:59: SVR: Exception inserting into table. -11-19-2024 17:58:59: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR-ERROR: Exception at: -11-19-2024 17:58:59: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:504) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:500) - ... 38 more - -11-19-2024 17:58:59: SVR: Cleanup -11-19-2024 17:58:59: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR: Test running in servlet vehicle failed -11-19-2024 17:58:59: Test: returning from running in a servlet vehicle -11-19-2024 17:58:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:59: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:59: Opened connection to http://localhost:8080/localTx_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:59: TRACE: got outputstream -11-19-2024 17:58:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:59: SVR-TRACE: In doPost -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRASharabilitynullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testname=testRASharability -11-19-2024 17:58:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:59: SVR-TRACE: **runmethod=testRASharability -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRASharability_setup -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRASharability_cleanup -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:59: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:59: SVR: Performing callback verification... -11-19-2024 17:58:59: SVR: Got RA log. -11-19-2024 17:58:59: SVR-TRACE: Got connection. -11-19-2024 17:58:59: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:59: SVR: Methods called correctly -11-19-2024 17:58:59: SVR: Performing end to end verification... -11-19-2024 17:58:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:59: SVR: Exception inserting into table. -11-19-2024 17:58:59: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR-ERROR: Exception at: -11-19-2024 17:58:59: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:431) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:427) - ... 38 more - -11-19-2024 17:58:59: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR: Cleanup -11-19-2024 17:58:59: SVR: Test running in servlet vehicle failed -11-19-2024 17:58:59: Test: returning from running in a servlet vehicle -11-19-2024 17:58:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:58:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:58:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:58:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:58:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:58:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:58:59: TRACE: in ServiceEETest.run() method -11-19-2024 17:58:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:58:59: Opened connection to http://localhost:8080/localTx_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:58:59: TRACE: got outputstream -11-19-2024 17:58:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:58:59: SVR-TRACE: In doPost -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:58:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:58:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:58:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRAforJavaBeannullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:58:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_lifecycle_servlet_vehicle/localTx_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:58:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:58:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:58:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ** IN getRunMethod: testname=testRAforJavaBean -11-19-2024 17:58:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:58:59: SVR-TRACE: **runmethod=testRAforJavaBean -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRAforJavaBean_setup -11-19-2024 17:58:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:58:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRAforJavaBean_cleanup -11-19-2024 17:58:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:58:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1 -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:58:59: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:58:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:58:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:58:59: SVR: Performing callback verification... -11-19-2024 17:58:59: SVR: Got RA log. -11-19-2024 17:58:59: SVR-TRACE: Got connection. -11-19-2024 17:58:59: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:58:59: SVR: Methods called correctly -11-19-2024 17:58:59: SVR: Performing end to end verification... -11-19-2024 17:58:59: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:58:59: SVR: Exception inserting into table. -11-19-2024 17:58:59: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:58:59: Test: returning from running in a servlet vehicle -11-19-2024 17:58:59: SVR-ERROR: Exception at: -11-19-2024 17:58:59: TRACE: SLEPT FOR: 0 -11-19-2024 17:58:59: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:577) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:573) - ... 38 more - -11-19-2024 17:58:59: SVR: Cleanup -11-19-2024 17:58:59: SVR: Test running in servlet vehicle failed -[ERROR] Tests run: 7, Failures: 0, Errors: 6, Skipped: 0, Time elapsed: 6.538 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1ServletTest -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1ServletTest.testAssociationMCFandRA Time elapsed: 0.029 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1ServletTest.testBootstrapforNull Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1ServletTest.testInstantiationOfRA Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1ServletTest.testMCFcalledOnce Time elapsed: 0.02 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1ServletTest.testRASharability Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1ServletTest.testRAforJavaBean Time elapsed: 0.018 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.localTx.msginflow.MDBClientJspTest -Nov 19, 2024 5:58:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:02 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:02 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:02 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:06 PM org.omnifaces.arquillian.container.glassfish.clientutils.GlassFishClientUtil getResponseMap -SEVERE: While Deploying Application: msginflow_mdb_jca --exit_code: FAILURE, message: Error occurred during deployment: Exception while loading the app : EJB Container initialization error. Please see server.log for more details. [status: CLIENT_ERROR reason: Bad Request] -Nov 19, 2024 5:59:06 PM org.omnifaces.arquillian.container.glassfish.clientutils.GlassFishClientUtil getResponseMap -WARNING: While Deploying Application: msginflow_mdb_jca --exit_code: FAILURE, message: Resource not found. [status: CLIENT_ERROR reason: Not Found] -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 6.465 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.msginflow.MDBClientJspTest -[ERROR] com.sun.ts.tests.connector.localTx.msginflow.MDBClientJspTest Time elapsed: 6.465 s <<< ERROR! -org.jboss.arquillian.container.spi.client.container.DeploymentException: Could not deploy msginflow_mdb_jca.ear -Caused by: org.omnifaces.arquillian.jersey.server.ContainerException: While Deploying Application: msginflow_mdb_jca --exit_code: FAILURE, message: Error occurred during deployment: Exception while loading the app : EJB Container initialization error. Please see server.log for more details. [status: CLIENT_ERROR reason: Bad Request] - -[INFO] Running com.sun.ts.tests.connector.localTx.msginflow.MDBClientServletTest -Nov 19, 2024 5:59:06 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:10 PM org.omnifaces.arquillian.container.glassfish.clientutils.GlassFishClientUtil getResponseMap -SEVERE: While Deploying Application: msginflow_mdb_jca --exit_code: FAILURE, message: Error occurred during deployment: Exception while loading the app : EJB Container initialization error. Please see server.log for more details. [status: CLIENT_ERROR reason: Bad Request] -Nov 19, 2024 5:59:10 PM org.omnifaces.arquillian.container.glassfish.clientutils.GlassFishClientUtil getResponseMap -WARNING: While Deploying Application: msginflow_mdb_jca --exit_code: FAILURE, message: Resource not found. [status: CLIENT_ERROR reason: Not Found] -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 4.401 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.msginflow.MDBClientServletTest -[ERROR] com.sun.ts.tests.connector.localTx.msginflow.MDBClientServletTest Time elapsed: 4.401 s <<< ERROR! -org.jboss.arquillian.container.spi.client.container.DeploymentException: Could not deploy msginflow_mdb_jca.ear -Caused by: org.omnifaces.arquillian.jersey.server.ContainerException: While Deploying Application: msginflow_mdb_jca --exit_code: FAILURE, message: Error occurred during deployment: Exception while loading the app : EJB Container initialization error. Please see server.log for more details. [status: CLIENT_ERROR reason: Bad Request] - -[INFO] Running com.sun.ts.tests.connector.localTx.security.securityClient1JspTest -Nov 19, 2024 5:59:10 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:13 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:13 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:13 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAppEISSignonnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testAppEISSignon -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testAppEISSignon -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAppEISSignon_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAppEISSignon_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@632001d4 -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@55a878d8 -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: Got connection object from the TSDataSource. -11-19-2024 17:59:15: SVR: Checking for Connection Validity. -11-19-2024 17:59:15: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:15: SVR: Exception inserting into table. -11-19-2024 17:59:15: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:15: SVR-ERROR: Exception at: -11-19-2024 17:59:15: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.security.securityClient1.testAppEISSignon(securityClient1.java:235) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.security.securityClient1.testAppEISSignon(securityClient1.java:231) - ... 41 more - -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:15: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestAllCallbacksAndPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testCBTestAllCallbacksAndPrin -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testCBTestAllCallbacksAndPrin -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestAllCallbacksAndPrin_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestAllCallbacksAndPrin_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@ec61009 -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1dec09c0 -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Performing callback verification... -11-19-2024 17:59:15: SVR-TRACE: Got connection. -11-19-2024 17:59:15: SVR-TRACE: Searching for string: cbTestAllCallbacksAndPrin: callbacks handled. -11-19-2024 17:59:15: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:15: SVR: testCBTestAllCallbacksAndPrin() passed -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle passed -11-19-2024 17:59:15: Test status from a jsp: 0: -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestAllCallbacksNullPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testCBTestAllCallbacksNullPrin -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testCBTestAllCallbacksNullPrin -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestAllCallbacksNullPrin_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestAllCallbacksNullPrin_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: Test status from a jsp: 0: -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@34699a09 -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@43c402d6 -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Performing callback verification... -11-19-2024 17:59:15: SVR-TRACE: Got connection. -11-19-2024 17:59:15: SVR-TRACE: Searching for string: cbTestAllCallbacksNullPrin: callbacks handled. -11-19-2024 17:59:15: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:15: SVR: testCBTestAllCallbacksNullPrin() passed -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestCPCandGPCnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testCBTestCPCandGPC -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testCBTestCPCandGPC -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestCPCandGPC_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestCPCandGPC_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4aec27c4 -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7c556a76 -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Performing callback verification... -11-19-2024 17:59:15: SVR-TRACE: Got connection. -11-19-2024 17:59:15: SVR-TRACE: Searching for string: cbTestCPCandGPC: callbacks handled. -11-19-2024 17:59:15: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:15: Test status from a jsp: 0: -11-19-2024 17:59:15: SVR: testCBTestCPCandGPC() passed -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestCPCandNullPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testCBTestCPCandNullPrin -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testCBTestCPCandNullPrin -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestCPCandNullPrin_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestCPCandNullPrin_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@463faa05 -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4fa879dc -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Performing callback verification... -11-19-2024 17:59:15: SVR-TRACE: Got connection. -11-19-2024 17:59:15: SVR-TRACE: Searching for string: cbTestCPCandNullPrin: Case-1 security callbacks handled. -11-19-2024 17:59:15: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:15: Test status from a jsp: 0: -11-19-2024 17:59:15: SVR: testCBTestCPCandNullPrin() passed -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestCPCandPVCnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testCBTestCPCandPVC -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testCBTestCPCandPVC -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestCPCandPVC_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestCPCandPVC_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@2d5ee3a5 -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@52f2bc71 -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Performing callback verification... -11-19-2024 17:59:15: SVR-TRACE: Got connection. -11-19-2024 17:59:15: SVR-TRACE: Searching for string: cbTestCPCandPVC: callbacks handled. -11-19-2024 17:59:15: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:15: Test status from a jsp: 0: -11-19-2024 17:59:15: SVR: testCBTestCPCandPVC() passed -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestCPCandPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testCBTestCPCandPrin -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testCBTestCPCandPrin -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestCPCandPrin_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestCPCandPrin_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@6dd39178 -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@628e7353 -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Performing callback verification... -11-19-2024 17:59:15: SVR-TRACE: Got connection. -11-19-2024 17:59:15: SVR-TRACE: Searching for string: cbTestCPCandPrin: callbacks handled. -11-19-2024 17:59:15: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:15: Test status from a jsp: 0: -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: SVR: testCBTestCPCandPrin() passed -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestEISCPCandPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testCBTestEISCPCandPrin -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testCBTestEISCPCandPrin -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestEISCPCandPrin_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestEISCPCandPrin_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@184d30fe -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@404d31ca -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Performing callback verification... -11-19-2024 17:59:15: SVR-TRACE: Got connection. -11-19-2024 17:59:15: SVR-TRACE: Searching for string: cbEISTestCPCandPrin: callbacks handled. -11-19-2024 17:59:15: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:15: Test status from a jsp: 0: -11-19-2024 17:59:15: SVR: testCBTestEISCPCandPrin() passed -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestGPCandCPCFailnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testCBTestGPCandCPCFail -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testCBTestGPCandCPCFail -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestGPCandCPCFail_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestGPCandCPCFail_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@213a08cf -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4cb6a489 -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Performing callback verification... -11-19-2024 17:59:15: SVR-TRACE: Got connection. -11-19-2024 17:59:15: SVR-TRACE: Searching for string: cbTestGPCandCPCFail: callbacks are NOT handled - as expected. -11-19-2024 17:59:15: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:15: SVR: testCBTestGPCandCPCFail() passed -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle passed -11-19-2024 17:59:15: Test status from a jsp: 0: -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testComponentManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testComponentManaged -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testComponentManaged -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testComponentManaged_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testComponentManaged_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@48d64e44 -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@290c8bc0 -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: Got connection object from the TSDataSource. -11-19-2024 17:59:15: SVR: Checking for Connection Validity. -11-19-2024 17:59:15: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:15: SVR: Exception inserting into table. -11-19-2024 17:59:15: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:15: SVR-ERROR: Exception at: -11-19-2024 17:59:15: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.security.securityClient1.testComponentManaged(securityClient1.java:192) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.security.securityClient1.testComponentManaged(securityClient1.java:188) - ... 41 more - -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:15: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:15: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:15: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:15: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:15: TRACE: got outputstream -11-19-2024 17:59:15: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:15: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnManagerAllocateConnectionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:15: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:15: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ** IN getRunMethod: testname=testConnManagerAllocateConnection -11-19-2024 17:59:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:15: SVR-TRACE: **runmethod=testConnManagerAllocateConnection -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnManagerAllocateConnection_setup -11-19-2024 17:59:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnManagerAllocateConnection_cleanup -11-19-2024 17:59:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:15: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:15: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@6d2b9c2b -11-19-2024 17:59:15: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@6f7daf08 -11-19-2024 17:59:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:15: SVR: Got connection from the TSDataSource. -11-19-2024 17:59:15: SVR: Checking for Connection Validity. -11-19-2024 17:59:15: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:15: SVR: Exception inserting into table. -11-19-2024 17:59:15: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:15: SVR-ERROR: Exception at: -11-19-2024 17:59:15: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:654) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:650) - ... 41 more - -11-19-2024 17:59:15: SVR: Cleanup -11-19-2024 17:59:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:15: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:15: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:15: Test: returning from running in a jsp vehicle -11-19-2024 17:59:15: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:16: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:16: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:16: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:16: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:16: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:16: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:16: Opened connection to http://localhost:8080/localTx_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:16: TRACE: got outputstream -11-19-2024 17:59:16: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:16: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:16: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:16: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:16: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:16: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testContainerManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:16: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:16: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:16: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:16: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:16: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:16: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_jsp_vehicle/localTx_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:16: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:16: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:16: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:16: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:16: SVR-TRACE: ** IN getRunMethod: testname=testContainerManaged -11-19-2024 17:59:16: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:16: SVR-TRACE: **runmethod=testContainerManaged -11-19-2024 17:59:16: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:16: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:16: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testContainerManaged_setup -11-19-2024 17:59:16: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:16: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:16: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:16: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testContainerManaged_cleanup -11-19-2024 17:59:16: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:16: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:16: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:16: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:16: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:16: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1b1a477f -11-19-2024 17:59:16: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1be50995 -11-19-2024 17:59:16: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:16: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:16: SVR: Got connection from the TSDataSource. -11-19-2024 17:59:16: SVR: Checking for Connection Validity. -11-19-2024 17:59:16: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:16: SVR: Exception inserting into table. -11-19-2024 17:59:16: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:16: SVR-ERROR: Exception at: -11-19-2024 17:59:16: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.security.securityClient1.testContainerManaged(securityClient1.java:147) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.security.securityClient1.testContainerManaged(securityClient1.java:143) - ... 41 more - -11-19-2024 17:59:16: SVR: Cleanup -11-19-2024 17:59:16: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:16: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:16: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:16: Test: returning from running in a jsp vehicle -11-19-2024 17:59:16: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 12, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 5.262 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.security.securityClient1JspTest -[ERROR] com.sun.ts.tests.connector.localTx.security.securityClient1JspTest.testAppEISSignon Time elapsed: 0.217 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.security.securityClient1JspTest.testComponentManaged Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.security.securityClient1JspTest.testConnManagerAllocateConnection Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.security.securityClient1JspTest.testContainerManaged Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.localTx.security.securityClient1ServletTest -Nov 19, 2024 5:59:16 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:18 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:18 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:18 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:18 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:20: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:20: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:20: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:20: TRACE: got outputstream -11-19-2024 17:59:20: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:20: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:59:20: SVR-TRACE: In doPost -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:20: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAppEISSignonnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testname=testAppEISSignon -11-19-2024 17:59:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:20: SVR-TRACE: **runmethod=testAppEISSignon -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAppEISSignon_setup -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAppEISSignon_cleanup -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:20: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@79867ca -11-19-2024 17:59:20: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4d2eef05 -11-19-2024 17:59:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:20: SVR: Got connection object from the TSDataSource. -11-19-2024 17:59:20: SVR: Checking for Connection Validity. -11-19-2024 17:59:20: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:20: SVR: Exception inserting into table. -11-19-2024 17:59:20: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:20: SVR-ERROR: Exception at: -11-19-2024 17:59:20: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.security.securityClient1.testAppEISSignon(securityClient1.java:235) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.security.securityClient1.testAppEISSignon(securityClient1.java:231) - ... 38 more - -11-19-2024 17:59:20: SVR: Cleanup -11-19-2024 17:59:20: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:20: SVR: Test running in servlet vehicle failed -11-19-2024 17:59:20: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:20: Test: returning from running in a servlet vehicle -11-19-2024 17:59:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:20: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:20: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:20: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:20: TRACE: got outputstream -11-19-2024 17:59:20: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:20: SVR-TRACE: In doPost -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:20: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestAllCallbacksAndPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testname=testCBTestAllCallbacksAndPrin -11-19-2024 17:59:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:20: SVR-TRACE: **runmethod=testCBTestAllCallbacksAndPrin -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestAllCallbacksAndPrin_setup -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestAllCallbacksAndPrin_cleanup -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:20: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@6527f492 -11-19-2024 17:59:20: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@c67396e -11-19-2024 17:59:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:20: SVR: Performing callback verification... -11-19-2024 17:59:20: SVR-TRACE: Got connection. -11-19-2024 17:59:20: SVR-TRACE: Searching for string: cbTestAllCallbacksAndPrin: callbacks handled. -11-19-2024 17:59:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:20: SVR: testCBTestAllCallbacksAndPrin() passed -11-19-2024 17:59:20: SVR: Cleanup -11-19-2024 17:59:20: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:20: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:20: Test status from a servlet: 0: -11-19-2024 17:59:20: Test: returning from running in a servlet vehicle -11-19-2024 17:59:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:20: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:20: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:20: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:20: TRACE: got outputstream -11-19-2024 17:59:20: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:20: SVR-TRACE: In doPost -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:20: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestAllCallbacksNullPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testname=testCBTestAllCallbacksNullPrin -11-19-2024 17:59:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:20: SVR-TRACE: **runmethod=testCBTestAllCallbacksNullPrin -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestAllCallbacksNullPrin_setup -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestAllCallbacksNullPrin_cleanup -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:20: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4a1aef23 -11-19-2024 17:59:20: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7260174a -11-19-2024 17:59:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:20: SVR: Performing callback verification... -11-19-2024 17:59:20: SVR-TRACE: Got connection. -11-19-2024 17:59:20: SVR-TRACE: Searching for string: cbTestAllCallbacksNullPrin: callbacks handled. -11-19-2024 17:59:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:20: SVR: testCBTestAllCallbacksNullPrin() passed -11-19-2024 17:59:20: SVR: Cleanup -11-19-2024 17:59:20: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:20: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:20: Test status from a servlet: 0: -11-19-2024 17:59:20: Test: returning from running in a servlet vehicle -11-19-2024 17:59:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:20: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:20: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:20: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:20: TRACE: got outputstream -11-19-2024 17:59:20: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:20: SVR-TRACE: In doPost -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:20: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestCPCandGPCnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testname=testCBTestCPCandGPC -11-19-2024 17:59:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:20: SVR-TRACE: **runmethod=testCBTestCPCandGPC -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestCPCandGPC_setup -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestCPCandGPC_cleanup -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:20: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@2075ee37 -11-19-2024 17:59:20: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@38fc3c41 -11-19-2024 17:59:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:20: SVR: Performing callback verification... -11-19-2024 17:59:20: SVR-TRACE: Got connection. -11-19-2024 17:59:20: SVR-TRACE: Searching for string: cbTestCPCandGPC: callbacks handled. -11-19-2024 17:59:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:20: Test status from a servlet: 0: -11-19-2024 17:59:20: SVR: testCBTestCPCandGPC() passed -11-19-2024 17:59:20: SVR: Cleanup -11-19-2024 17:59:20: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:20: Test: returning from running in a servlet vehicle -11-19-2024 17:59:20: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:20: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:20: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:20: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:20: TRACE: got outputstream -11-19-2024 17:59:20: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:20: SVR-TRACE: In doPost -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:20: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestCPCandNullPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testname=testCBTestCPCandNullPrin -11-19-2024 17:59:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:20: SVR-TRACE: **runmethod=testCBTestCPCandNullPrin -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestCPCandNullPrin_setup -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestCPCandNullPrin_cleanup -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:20: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@298f1a13 -11-19-2024 17:59:20: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1a68153c -11-19-2024 17:59:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:20: SVR: Performing callback verification... -11-19-2024 17:59:20: SVR-TRACE: Got connection. -11-19-2024 17:59:20: SVR-TRACE: Searching for string: cbTestCPCandNullPrin: Case-1 security callbacks handled. -11-19-2024 17:59:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:20: SVR: testCBTestCPCandNullPrin() passed -11-19-2024 17:59:20: Test status from a servlet: 0: -11-19-2024 17:59:20: SVR: Cleanup -11-19-2024 17:59:20: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:20: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:20: Test: returning from running in a servlet vehicle -11-19-2024 17:59:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:20: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:20: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:20: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:20: TRACE: got outputstream -11-19-2024 17:59:20: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:20: SVR-TRACE: In doPost -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:20: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestCPCandPVCnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testname=testCBTestCPCandPVC -11-19-2024 17:59:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:20: SVR-TRACE: **runmethod=testCBTestCPCandPVC -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestCPCandPVC_setup -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestCPCandPVC_cleanup -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:20: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@58c0a64c -11-19-2024 17:59:20: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@37ad400e -11-19-2024 17:59:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:20: SVR: Performing callback verification... -11-19-2024 17:59:20: SVR-TRACE: Got connection. -11-19-2024 17:59:20: SVR-TRACE: Searching for string: cbTestCPCandPVC: callbacks handled. -11-19-2024 17:59:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:20: Test status from a servlet: 0: -11-19-2024 17:59:20: SVR: testCBTestCPCandPVC() passed -11-19-2024 17:59:20: SVR: Cleanup -11-19-2024 17:59:20: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:20: Test: returning from running in a servlet vehicle -11-19-2024 17:59:20: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:20: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:20: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:20: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:20: TRACE: got outputstream -11-19-2024 17:59:20: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:20: SVR-TRACE: In doPost -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:20: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestCPCandPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testname=testCBTestCPCandPrin -11-19-2024 17:59:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:20: SVR-TRACE: **runmethod=testCBTestCPCandPrin -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestCPCandPrin_setup -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestCPCandPrin_cleanup -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:20: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4523bac5 -11-19-2024 17:59:20: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@27d45594 -11-19-2024 17:59:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:20: SVR: Performing callback verification... -11-19-2024 17:59:20: SVR-TRACE: Got connection. -11-19-2024 17:59:20: SVR-TRACE: Searching for string: cbTestCPCandPrin: callbacks handled. -11-19-2024 17:59:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:20: SVR: testCBTestCPCandPrin() passed -11-19-2024 17:59:20: Test status from a servlet: 0: -11-19-2024 17:59:20: SVR: Cleanup -11-19-2024 17:59:20: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:20: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:20: Test: returning from running in a servlet vehicle -11-19-2024 17:59:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:20: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:20: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:20: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:20: TRACE: got outputstream -11-19-2024 17:59:20: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:20: SVR-TRACE: In doPost -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:20: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:20: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestEISCPCandPrinnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ** IN getRunMethod: testname=testCBTestEISCPCandPrin -11-19-2024 17:59:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:20: SVR-TRACE: **runmethod=testCBTestEISCPCandPrin -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestEISCPCandPrin_setup -11-19-2024 17:59:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestEISCPCandPrin_cleanup -11-19-2024 17:59:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:20: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:20: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@200441c -11-19-2024 17:59:20: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@6ca136d9 -11-19-2024 17:59:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:20: SVR: Performing callback verification... -11-19-2024 17:59:20: SVR-TRACE: Got connection. -11-19-2024 17:59:20: SVR-TRACE: Searching for string: cbEISTestCPCandPrin: callbacks handled. -11-19-2024 17:59:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:20: SVR: testCBTestEISCPCandPrin() passed -11-19-2024 17:59:20: SVR: Cleanup -11-19-2024 17:59:20: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:20: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:20: Test status from a servlet: 0: -11-19-2024 17:59:20: Test: returning from running in a servlet vehicle -11-19-2024 17:59:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:21: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:21: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:21: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:21: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:21: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:21: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:21: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:21: TRACE: got outputstream -11-19-2024 17:59:21: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:21: SVR-TRACE: In doPost -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:21: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:21: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testCBTestGPCandCPCFailnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:21: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:21: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:21: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:21: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:21: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:21: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ** IN getRunMethod: testname=testCBTestGPCandCPCFail -11-19-2024 17:59:21: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:21: SVR-TRACE: **runmethod=testCBTestGPCandCPCFail -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:21: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:21: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testCBTestGPCandCPCFail_setup -11-19-2024 17:59:21: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:21: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:21: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testCBTestGPCandCPCFail_cleanup -11-19-2024 17:59:21: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:21: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:21: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:21: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:21: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@3725381 -11-19-2024 17:59:21: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4d612cee -11-19-2024 17:59:21: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:21: SVR: Performing callback verification... -11-19-2024 17:59:21: SVR-TRACE: Got connection. -11-19-2024 17:59:21: SVR-TRACE: Searching for string: cbTestGPCandCPCFail: callbacks are NOT handled - as expected. -11-19-2024 17:59:21: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:21: SVR: testCBTestGPCandCPCFail() passed -11-19-2024 17:59:21: SVR: Cleanup -11-19-2024 17:59:21: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:21: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:21: Test status from a servlet: 0: -11-19-2024 17:59:21: Test: returning from running in a servlet vehicle -11-19-2024 17:59:21: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:21 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:21: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:21: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:21: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:21: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:21: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:21: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:21: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:21: TRACE: got outputstream -11-19-2024 17:59:21: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:21: SVR-TRACE: In doPost -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:21: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:21: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testComponentManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:21: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:21: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:21: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:21: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:21: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:21: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ** IN getRunMethod: testname=testComponentManaged -11-19-2024 17:59:21: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:21: SVR-TRACE: **runmethod=testComponentManaged -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:21: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:21: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testComponentManaged_setup -11-19-2024 17:59:21: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:21: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:21: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testComponentManaged_cleanup -11-19-2024 17:59:21: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:21: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:21: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:21: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:21: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4ca7cef8 -11-19-2024 17:59:21: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@75782d55 -11-19-2024 17:59:21: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:21: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:21: SVR: Got connection object from the TSDataSource. -11-19-2024 17:59:21: SVR: Checking for Connection Validity. -11-19-2024 17:59:21: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:21: SVR: Exception inserting into table. -11-19-2024 17:59:21: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:21: SVR-ERROR: Exception at: -11-19-2024 17:59:21: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.security.securityClient1.testComponentManaged(securityClient1.java:192) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.security.securityClient1.testComponentManaged(securityClient1.java:188) - ... 38 more - -11-19-2024 17:59:21: SVR: Cleanup -11-19-2024 17:59:21: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:21: SVR: Test running in servlet vehicle failed -11-19-2024 17:59:21: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:21: Test: returning from running in a servlet vehicle -11-19-2024 17:59:21: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:21 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:21: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:21: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:21: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:21: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:21: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:21: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:21: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:21: TRACE: got outputstream -11-19-2024 17:59:21: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:21: SVR-TRACE: In doPost -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:21: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:21: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnManagerAllocateConnectionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:21: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:21: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:21: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:21: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:21: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:21: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ** IN getRunMethod: testname=testConnManagerAllocateConnection -11-19-2024 17:59:21: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:21: SVR-TRACE: **runmethod=testConnManagerAllocateConnection -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:21: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:21: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnManagerAllocateConnection_setup -11-19-2024 17:59:21: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:21: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:21: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnManagerAllocateConnection_cleanup -11-19-2024 17:59:21: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:21: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:21: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:21: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:21: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@2dcded30 -11-19-2024 17:59:21: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@6e2bfe00 -11-19-2024 17:59:21: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:21: SVR: Got connection from the TSDataSource. -11-19-2024 17:59:21: SVR: Checking for Connection Validity. -11-19-2024 17:59:21: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:21: SVR: Exception inserting into table. -11-19-2024 17:59:21: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:21: SVR-ERROR: Exception at: -11-19-2024 17:59:21: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:654) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:650) - ... 38 more - -11-19-2024 17:59:21: SVR: Cleanup -11-19-2024 17:59:21: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:21: SVR: Test running in servlet vehicle failed -11-19-2024 17:59:21: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:21: Test: returning from running in a servlet vehicle -11-19-2024 17:59:21: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:21 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:21 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:21: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:21: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:21: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:21: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:21: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:21: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:21: Opened connection to http://localhost:8080/localTx_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:21: TRACE: got outputstream -11-19-2024 17:59:21: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:21: SVR-TRACE: In doPost -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:21: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:21: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:21: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testContainerManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:21: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/security/securityClient1.class -11-19-2024 17:59:21: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:21: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_security_servlet_vehicle/localTx_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:21: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:21: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:21: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ** IN getRunMethod: testname=testContainerManaged -11-19-2024 17:59:21: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:21: SVR-TRACE: **runmethod=testContainerManaged -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:21: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:21: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testContainerManaged_setup -11-19-2024 17:59:21: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:21: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:21: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testContainerManaged_cleanup -11-19-2024 17:59:21: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:21: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.security.securityClient1 -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:21: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:21: SVR: Using: java:comp/env/eis/whitebox-tx-param -11-19-2024 17:59:21: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@5887c517 -11-19-2024 17:59:21: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@230de3e3 -11-19-2024 17:59:21: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:21: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:21: SVR: Got connection from the TSDataSource. -11-19-2024 17:59:21: SVR: Checking for Connection Validity. -11-19-2024 17:59:21: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:21: SVR: Exception inserting into table. -11-19-2024 17:59:21: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:21: SVR-ERROR: Exception at: -11-19-2024 17:59:21: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.security.securityClient1.testContainerManaged(securityClient1.java:147) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.security.securityClient1.testContainerManaged(securityClient1.java:143) - ... 38 more - -11-19-2024 17:59:21: SVR: Cleanup -11-19-2024 17:59:21: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:21: SVR: Test running in servlet vehicle failed -11-19-2024 17:59:21: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:21: Test: returning from running in a servlet vehicle -11-19-2024 17:59:21: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 12, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 5.059 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.security.securityClient1ServletTest -[ERROR] com.sun.ts.tests.connector.localTx.security.securityClient1ServletTest.testAppEISSignon Time elapsed: 0.021 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.security.securityClient1ServletTest.testComponentManaged Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.security.securityClient1ServletTest.testConnManagerAllocateConnection Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.security.securityClient1ServletTest.testContainerManaged Time elapsed: 0.015 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1JspTest -Nov 19, 2024 5:59:21 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:22 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:22 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:22 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:23 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:23 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:23 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:24 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:25 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:25 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:25 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:26 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:26 PM org.omnifaces.arquillian.container.glassfish.clientutils.GlassFishClientUtil getResponseMap -SEVERE: While Deploying Application: localTx_transinflow_jsp_vehicle --exit_code: FAILURE, message: Error occurred during deployment: Exception while deploying the app [localTx_transinflow_jsp_vehicle] : Error in parsing WEB-INF/sun-web.xml for archive [file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_jsp_vehicle/localTx_transinflow_jsp_vehicle_web_war/]: The xml element should be [sun-web-app] rather than [web-app]. Please see server.log for more details. [status: CLIENT_ERROR reason: Bad Request] -Nov 19, 2024 5:59:26 PM org.omnifaces.arquillian.container.glassfish.clientutils.GlassFishClientUtil getResponseMap -WARNING: While Deploying Application: localTx_transinflow_jsp_vehicle --exit_code: FAILURE, message: Resource not found. [status: CLIENT_ERROR reason: Not Found] -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 5.833 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1JspTest -[ERROR] com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1JspTest Time elapsed: 5.833 s <<< ERROR! -org.jboss.arquillian.container.spi.client.container.DeploymentException: Could not deploy localTx_transinflow_jsp_vehicle.ear -Caused by: org.omnifaces.arquillian.jersey.server.ContainerException: While Deploying Application: localTx_transinflow_jsp_vehicle --exit_code: FAILURE, message: Error occurred during deployment: Exception while deploying the app [localTx_transinflow_jsp_vehicle] : Error in parsing WEB-INF/sun-web.xml for archive [file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_jsp_vehicle/localTx_transinflow_jsp_vehicle_web_war/]: The xml element should be [sun-web-app] rather than [web-app]. Please see server.log for more details. [status: CLIENT_ERROR reason: Bad Request] - -[INFO] Running com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1ServletTest -Nov 19, 2024 5:59:26 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:27 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:28 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:28 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:28 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:29 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:29 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:29 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:30 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:30 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:30 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:31 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:31 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:32 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, vehicle: servlet -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_transinflow_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:32: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:32: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:32: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:32: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:32: Opened connection to http://localhost:8080/localTx_transinflow_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:32: TRACE: got outputstream -11-19-2024 17:59:32: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:32: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:59:32: SVR-TRACE: In doPost -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:32: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:32: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConcurrentWorkXidnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_transinflow_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:32: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:32: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:32: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testname=testConcurrentWorkXid -11-19-2024 17:59:32: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:32: SVR-TRACE: **runmethod=testConcurrentWorkXid -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConcurrentWorkXid_setup -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:32: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConcurrentWorkXid_cleanup -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:32: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:32: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:32: SVR: establishing connection to rar... -11-19-2024 17:59:32: SVR: Got RA log. -11-19-2024 17:59:32: SVR-TRACE: Got connection. -11-19-2024 17:59:32: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:32: SVR: Methods called correctly -11-19-2024 17:59:32: SVR: Performing end to end verification... -11-19-2024 17:59:32: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:32: SVR: Exception inserting into table. -11-19-2024 17:59:32: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:32: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:32: SVR-ERROR: Exception at: -11-19-2024 17:59:32: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1.testConcurrentWorkXid(transinflowClient1.java:434) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1.testConcurrentWorkXid(transinflowClient1.java:430) - ... 38 more - -11-19-2024 17:59:32: Test: returning from running in a servlet vehicle -11-19-2024 17:59:32: SVR: Cleanup -11-19-2024 17:59:32: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:32: SVR: Test running in servlet vehicle failed -Nov 19, 2024 5:59:32 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, vehicle: servlet -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_transinflow_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:32: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:32: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:32: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:32: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:32: Opened connection to http://localhost:8080/localTx_transinflow_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:32: TRACE: got outputstream -11-19-2024 17:59:32: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:32: SVR-TRACE: In doPost -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:32: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:32: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testGetTransactionSupportnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_transinflow_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:32: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:32: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:32: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testname=testGetTransactionSupport -11-19-2024 17:59:32: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:32: SVR-TRACE: **runmethod=testGetTransactionSupport -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testGetTransactionSupport_setup -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:32: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testGetTransactionSupport_cleanup -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:32: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:32: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:32: SVR: establishing connection to rar... -11-19-2024 17:59:32: SVR: Getting RA log. -11-19-2024 17:59:32: SVR-TRACE: Got RA log and connection. -11-19-2024 17:59:32: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:32: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:32: SVR: Methods called correctly -11-19-2024 17:59:32: SVR: Performing end to end verification... -11-19-2024 17:59:32: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:32: Test: returning from running in a servlet vehicle -11-19-2024 17:59:32: SVR: Exception inserting into table. -11-19-2024 17:59:32: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:32: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:32: SVR-ERROR: Exception at: -11-19-2024 17:59:32: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1.testGetTransactionSupport(transinflowClient1.java:154) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1.testGetTransactionSupport(transinflowClient1.java:150) - ... 38 more - -11-19-2024 17:59:32: SVR: Cleanup -11-19-2024 17:59:32: SVR: Test running in servlet vehicle failed -Nov 19, 2024 5:59:32 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, vehicle: servlet -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_transinflow_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:32: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:32: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:32: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:32: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:32: Opened connection to http://localhost:8080/localTx_transinflow_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:32: TRACE: got outputstream -11-19-2024 17:59:32: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:32: SVR-TRACE: In doPost -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:32: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:32: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testSetResourceAdapterMethodnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_transinflow_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:32: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:32: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:32: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testname=testSetResourceAdapterMethod -11-19-2024 17:59:32: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:32: SVR-TRACE: **runmethod=testSetResourceAdapterMethod -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testSetResourceAdapterMethod_setup -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:32: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testSetResourceAdapterMethod_cleanup -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:32: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:32: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:32: SVR: establishing connection to rar... -11-19-2024 17:59:32: SVR: Got RA log. -11-19-2024 17:59:32: SVR-TRACE: Got connection. -11-19-2024 17:59:32: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:32: SVR: testSetResourceAdapterMethod called correctly -11-19-2024 17:59:32: SVR: Performing end to end verification... -11-19-2024 17:59:32: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:32: SVR: Exception inserting into table. -11-19-2024 17:59:32: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:32: SVR-ERROR: Exception at: -11-19-2024 17:59:32: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1.testSetResourceAdapterMethod(transinflowClient1.java:235) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1.testSetResourceAdapterMethod(transinflowClient1.java:231) - ... 38 more - -11-19-2024 17:59:32: SVR: Cleanup -11-19-2024 17:59:32: SVR: Test running in servlet vehicle failed -11-19-2024 17:59:32: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:32: Test: returning from running in a servlet vehicle -11-19-2024 17:59:32: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:32 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, vehicle: servlet -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_transinflow_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:32: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:32: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:32: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:32: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:32: Opened connection to http://localhost:8080/localTx_transinflow_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:32: TRACE: got outputstream -11-19-2024 17:59:32: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:32: SVR-TRACE: In doPost -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:32: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:32: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testTransactionSynchronizationRegistrynullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_transinflow_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:32: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:32: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:32: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testname=testTransactionSynchronizationRegistry -11-19-2024 17:59:32: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:32: SVR-TRACE: **runmethod=testTransactionSynchronizationRegistry -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testTransactionSynchronizationRegistry_setup -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:32: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testTransactionSynchronizationRegistry_cleanup -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:32: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:32: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:32: SVR: establishing connection to rar... -11-19-2024 17:59:32: SVR: Got RA log. -11-19-2024 17:59:32: SVR-TRACE: Got connection. -11-19-2024 17:59:32: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:32: Test status from a servlet: 0: -11-19-2024 17:59:32: SVR: Methods called correctly -11-19-2024 17:59:32: SVR: Cleanup -11-19-2024 17:59:32: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:32: Test: returning from running in a servlet vehicle -11-19-2024 17:59:32: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:32 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, vehicle: servlet -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:32 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_transinflow_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:32: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:32: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:32: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:32: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:32: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:32: Opened connection to http://localhost:8080/localTx_transinflow_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:32: TRACE: got outputstream -11-19-2024 17:59:32: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:32: SVR-TRACE: In doPost -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:32: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:32: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:32: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testXATerminatornullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_transinflow_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:32: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_transinflow_servlet_vehicle/localTx_transinflow_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:32: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:32: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:32: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ** IN getRunMethod: testname=testXATerminator -11-19-2024 17:59:32: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:32: SVR-TRACE: **runmethod=testXATerminator -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testXATerminator_setup -11-19-2024 17:59:32: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:32: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testXATerminator_cleanup -11-19-2024 17:59:32: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:32: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1 -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:32: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:32: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:32: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:32: SVR: establishing connection to rar... -11-19-2024 17:59:32: SVR: Got RA log. -11-19-2024 17:59:32: SVR-TRACE: Got connection. -11-19-2024 17:59:32: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:32: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:32: SVR: Methods called correctly -11-19-2024 17:59:32: SVR: Performing end to end verification... -11-19-2024 17:59:32: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:32: SVR: Exception inserting into table. -11-19-2024 17:59:32: Test: returning from running in a servlet vehicle -11-19-2024 17:59:32: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:32: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:32: SVR-ERROR: Exception at: -11-19-2024 17:59:32: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1.testXATerminator(transinflowClient1.java:315) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1.testXATerminator(transinflowClient1.java:311) - ... 38 more - -11-19-2024 17:59:32: SVR: Cleanup -11-19-2024 17:59:32: SVR: Test running in servlet vehicle failed -[ERROR] Tests run: 5, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 5.593 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1ServletTest -[ERROR] com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1ServletTest.testConcurrentWorkXid Time elapsed: 0.022 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1ServletTest.testGetTransactionSupport Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1ServletTest.testSetResourceAdapterMethod Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1ServletTest.testXATerminator Time elapsed: 0.015 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientJspTest -Nov 19, 2024 5:59:32 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:32 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:33 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:33 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:33 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:34 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:34 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:34 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testHICNotificationsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testHICNotifications -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testHICNotifications -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testHICNotifications_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testHICNotifications_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: SVR: testWorkContextNotifications() failed with following values: iContextSetupFailedCount = -1 -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testIsContextSupportednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testIsContextSupported -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testIsContextSupported -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testIsContextSupported_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testIsContextSupported_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Performing callback verification... -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: SVR: Methods called correctly -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorkContextsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testNestedWorkContexts -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testNestedWorkContexts -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWorkContexts_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWorkContexts_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Performing callback verification... -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connections. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: SVR: testNestedWorkContexts() passed -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorkContexts2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testNestedWorkContexts2 -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testNestedWorkContexts2 -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWorkContexts2_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWorkContexts2_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Performing callback verification... -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: SVR: testNestedWorkContexts2() passed -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorkContexts3nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testNestedWorkContexts3 -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testNestedWorkContexts3 -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWorkContexts3_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWorkContexts3_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Performing callback verification... -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: SVR: testNestedWorkContexts3() passed -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testSecurityContextCBHnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testSecurityContextCBH -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testSecurityContextCBH -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testSecurityContextCBH_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testSecurityContextCBH_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Performing callback verification... -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: SVR: testSecurityContextCBH() passed -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testSecurityContextExecSubjectnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testSecurityContextExecSubject -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testSecurityContextExecSubject -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testSecurityContextExecSubject_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testSecurityContextExecSubject_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Performing callback verification... -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: SVR: testSecurityContextExecSubject() passed -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testSecurityContextServiceSubjectnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testSecurityContextServiceSubject -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testSecurityContextServiceSubject -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testSecurityContextServiceSubject_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testSecurityContextServiceSubject_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Performing callback verification... -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: SVR: testSecurityContextServiceSubject() passed -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkContextErrorCodenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testWorkContextErrorCode -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testWorkContextErrorCode -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkContextErrorCode_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkContextErrorCode_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Performing callback verification... -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: SVR: testWorkContextErrorCode() passed -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkContextErrorCode2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testWorkContextErrorCode2 -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testWorkContextErrorCode2 -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkContextErrorCode2_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkContextErrorCode2_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Performing callback verification... -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: SVR: testWorkContextErrorCode2() passed -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkContextNotificationsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testWorkContextNotifications -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testWorkContextNotifications -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkContextNotifications_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkContextNotifications_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: SVR: testWorkContextNotifications() failed with following values: iWorkAcceptedCount = 1 iWorkStartedCount = 2 iWorkCompletedCount = 4 iContextSetupCompleteCount = 3 -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:37: SVR: contextSetupCompleted correctly called befor workCompleted -11-19-2024 17:59:37: SVR: testWorkContextNotifications() passed -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: jsp -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:37 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:37: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:37: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:37: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:37: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:37: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:37: Opened connection to http://localhost:8080/workcontext_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:37: TRACE: got outputstream -11-19-2024 17:59:37: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:37: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:37: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkContextProvidernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:37: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:37: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:37: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_jsp_vehicle/workcontext_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:37: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:37: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:37: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ** IN getRunMethod: testname=testWorkContextProvider -11-19-2024 17:59:37: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:37: SVR-TRACE: **runmethod=testWorkContextProvider -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkContextProvider_setup -11-19-2024 17:59:37: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:37: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkContextProvider_cleanup -11-19-2024 17:59:37: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:37: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:37: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:37: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:37: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:37: SVR: testing testWorkContextProvider() -11-19-2024 17:59:37: SVR: Got RA log. -11-19-2024 17:59:37: SVR-TRACE: Got connection. -11-19-2024 17:59:37: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:37: SVR: testWorkContextProvider() passed -11-19-2024 17:59:37: SVR: Cleanup -11-19-2024 17:59:37: SVR: Test running in jsp vehicle passed -11-19-2024 17:59:37: Test status from a jsp: 0: -11-19-2024 17:59:37: Test: returning from running in a jsp vehicle -11-19-2024 17:59:37: TRACE: SLEPT FOR: 0 -[INFO] Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.984 s - in com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientJspTest -[INFO] Running com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientServletTest -Nov 19, 2024 5:59:37 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:39 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:39 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:39 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:40 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:40 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:40 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:41 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:41 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testHICNotificationsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testHICNotifications -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testHICNotifications -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testHICNotifications_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testHICNotifications_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR: testWorkContextNotifications() failed with following values: iContextSetupFailedCount = -1 -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testIsContextSupportednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testIsContextSupported -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testIsContextSupported -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testIsContextSupported_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testIsContextSupported_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Performing callback verification... -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR: Methods called correctly -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorkContextsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testNestedWorkContexts -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testNestedWorkContexts -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWorkContexts_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWorkContexts_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Performing callback verification... -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connections. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR: testNestedWorkContexts() passed -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorkContexts2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testNestedWorkContexts2 -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testNestedWorkContexts2 -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWorkContexts2_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWorkContexts2_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Performing callback verification... -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR: testNestedWorkContexts2() passed -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorkContexts3nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testNestedWorkContexts3 -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testNestedWorkContexts3 -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWorkContexts3_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWorkContexts3_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Performing callback verification... -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: SVR: testNestedWorkContexts3() passed -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testSecurityContextCBHnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testSecurityContextCBH -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testSecurityContextCBH -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testSecurityContextCBH_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testSecurityContextCBH_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Performing callback verification... -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR: testSecurityContextCBH() passed -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testSecurityContextExecSubjectnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testSecurityContextExecSubject -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testSecurityContextExecSubject -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testSecurityContextExecSubject_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testSecurityContextExecSubject_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Performing callback verification... -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR: testSecurityContextExecSubject() passed -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testSecurityContextServiceSubjectnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testSecurityContextServiceSubject -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testSecurityContextServiceSubject -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testSecurityContextServiceSubject_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testSecurityContextServiceSubject_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Performing callback verification... -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR: testSecurityContextServiceSubject() passed -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkContextErrorCodenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testWorkContextErrorCode -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testWorkContextErrorCode -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkContextErrorCode_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkContextErrorCode_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Performing callback verification... -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR: testWorkContextErrorCode() passed -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkContextErrorCode2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testWorkContextErrorCode2 -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testWorkContextErrorCode2 -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkContextErrorCode2_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkContextErrorCode2_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Performing callback verification... -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: SVR: testWorkContextErrorCode2() passed -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkContextNotificationsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testWorkContextNotifications -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testWorkContextNotifications -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkContextNotifications_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkContextNotifications_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: SVR: testWorkContextNotifications() failed with following values: iWorkAcceptedCount = 1 iWorkStartedCount = 2 iWorkCompletedCount = 4 iContextSetupCompleteCount = 3 -11-19-2024 17:59:42: SVR: contextSetupCompleted correctly called befor workCompleted -11-19-2024 17:59:42: SVR: testWorkContextNotifications() passed -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, vehicle: servlet -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:42 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workcontext_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:42: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:42: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:42: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:42: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:42: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:42: Opened connection to http://localhost:8080/workcontext_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:42: TRACE: got outputstream -11-19-2024 17:59:42: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:42: SVR-TRACE: In doPost -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:42: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:42: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:42: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkContextProvidernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workcontext_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:42: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workcontext_servlet_vehicle/workcontext_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:42: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:42: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:42: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ** IN getRunMethod: testname=testWorkContextProvider -11-19-2024 17:59:42: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:42: SVR-TRACE: **runmethod=testWorkContextProvider -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkContextProvider_setup -11-19-2024 17:59:42: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:42: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkContextProvider_cleanup -11-19-2024 17:59:42: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:42: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:42: SVR: Using: java:comp/env/eis/whitebox-mdcomplete -11-19-2024 17:59:42: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:42: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:42: SVR: testing testWorkContextProvider() -11-19-2024 17:59:42: SVR: Got RA log. -11-19-2024 17:59:42: SVR-TRACE: Got connection. -11-19-2024 17:59:42: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:42: Test status from a servlet: 0: -11-19-2024 17:59:42: SVR: testWorkContextProvider() passed -11-19-2024 17:59:42: SVR: Cleanup -11-19-2024 17:59:42: SVR: Test running in servlet vehicle passed -11-19-2024 17:59:42: Test: returning from running in a servlet vehicle -11-19-2024 17:59:42: TRACE: SLEPT FOR: 0 -[INFO] Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.132 s - in com.sun.ts.tests.connector.localTx.workcontext.WorkContextClientServletTest -[INFO] Running com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest -Nov 19, 2024 5:59:42 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:42 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:43 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:43 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:44 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:44 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:44 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:45 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:45 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:45 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:45 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:47 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:47 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:48: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:48: Opened connection to http://localhost:8080/localTx_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:48: TRACE: got outputstream -11-19-2024 17:59:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testForUnsharedTimernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testname=testForUnsharedTimer -11-19-2024 17:59:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:48: SVR-TRACE: **runmethod=testForUnsharedTimer -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testForUnsharedTimer_setup -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testForUnsharedTimer_cleanup -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:48: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:48: SVR: Performing callback verification... -11-19-2024 17:59:48: SVR: Got RA log. -11-19-2024 17:59:48: SVR-TRACE: Got connection. -11-19-2024 17:59:48: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:48: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:48: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:48: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:48: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:48: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:48: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:48: SVR: Methods called correctly -11-19-2024 17:59:48: SVR: Performing end to end verification... -11-19-2024 17:59:48: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:48: SVR: Exception inserting into table. -11-19-2024 17:59:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: SVR-ERROR: Exception at: -11-19-2024 17:59:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:554) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:550) - ... 41 more - -11-19-2024 17:59:48: SVR: Cleanup -11-19-2024 17:59:48: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: Test: returning from running in a jsp vehicle -11-19-2024 17:59:48: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:48: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:48: Opened connection to http://localhost:8080/localTx_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:48: TRACE: got outputstream -11-19-2024 17:59:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testname=testNestedWork -11-19-2024 17:59:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:48: SVR-TRACE: **runmethod=testNestedWork -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWork_setup -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWork_cleanup -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:48: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:48: SVR: Performing callback verification... -11-19-2024 17:59:48: SVR: Got RA log. -11-19-2024 17:59:48: SVR-TRACE: Got connection. -11-19-2024 17:59:48: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:48: SVR: Methods called correctly -11-19-2024 17:59:48: SVR: Performing end to end verification... -11-19-2024 17:59:48: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:48: SVR: Exception inserting into table. -11-19-2024 17:59:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: SVR-ERROR: Exception at: -11-19-2024 17:59:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:627) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:623) - ... 41 more - -11-19-2024 17:59:48: SVR: Cleanup -11-19-2024 17:59:48: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: Test: returning from running in a jsp vehicle -11-19-2024 17:59:48: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:48: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:48: Opened connection to http://localhost:8080/localTx_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:48: TRACE: got outputstream -11-19-2024 17:59:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWork -11-19-2024 17:59:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:48: SVR-TRACE: **runmethod=testScheduleWork -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWork_setup -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWork_cleanup -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:48: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:48: SVR: Performing callback verification... -11-19-2024 17:59:48: SVR: Got RA log. -11-19-2024 17:59:48: SVR-TRACE: Got connection. -11-19-2024 17:59:48: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:48: SVR: Methods called correctly -11-19-2024 17:59:48: SVR: Performing end to end verification... -11-19-2024 17:59:48: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:48: SVR: Exception inserting into table. -11-19-2024 17:59:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: SVR-ERROR: Exception at: -11-19-2024 17:59:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:310) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:306) - ... 41 more - -11-19-2024 17:59:48: SVR: Cleanup -11-19-2024 17:59:48: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: Test: returning from running in a jsp vehicle -11-19-2024 17:59:48: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:48: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:48: Opened connection to http://localhost:8080/localTx_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:48: TRACE: got outputstream -11-19-2024 17:59:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorkListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWorkListener -11-19-2024 17:59:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:48: SVR-TRACE: **runmethod=testScheduleWorkListener -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWorkListener_setup -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWorkListener_cleanup -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:48: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:48: SVR: Performing callback verification... -11-19-2024 17:59:48: SVR: Got RA log. -11-19-2024 17:59:48: SVR-TRACE: Got connection. -11-19-2024 17:59:48: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:48: SVR: Methods called correctly -11-19-2024 17:59:48: SVR: Performing end to end verification... -11-19-2024 17:59:48: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:48: SVR: Exception inserting into table. -11-19-2024 17:59:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: SVR-ERROR: Exception at: -11-19-2024 17:59:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:383) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:379) - ... 41 more - -11-19-2024 17:59:48: SVR: Cleanup -11-19-2024 17:59:48: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: Test: returning from running in a jsp vehicle -11-19-2024 17:59:48: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:48: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:48: Opened connection to http://localhost:8080/localTx_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:48: TRACE: got outputstream -11-19-2024 17:59:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testUnknownWorkDurationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testname=testUnknownWorkDuration -11-19-2024 17:59:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:48: SVR-TRACE: **runmethod=testUnknownWorkDuration -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testUnknownWorkDuration_setup -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testUnknownWorkDuration_cleanup -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:48: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:48: SVR: Performing callback verification... -11-19-2024 17:59:48: SVR: Got RA log. -11-19-2024 17:59:48: SVR-TRACE: Got connection. -11-19-2024 17:59:48: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:48: SVR: Methods called correctly -11-19-2024 17:59:48: SVR: Performing end to end verification... -11-19-2024 17:59:48: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:48: SVR: Exception inserting into table. -11-19-2024 17:59:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: SVR-ERROR: Exception at: -11-19-2024 17:59:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:709) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:705) - ... 41 more - -11-19-2024 17:59:48: SVR: Cleanup -11-19-2024 17:59:48: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: Test: returning from running in a jsp vehicle -11-19-2024 17:59:48: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:48: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:48: Opened connection to http://localhost:8080/localTx_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:48: TRACE: got outputstream -11-19-2024 17:59:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkCompletedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testname=testWorkCompletedException -11-19-2024 17:59:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:48: SVR-TRACE: **runmethod=testWorkCompletedException -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkCompletedException_setup -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkCompletedException_cleanup -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:48: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:48: SVR: Performing callback verification... -11-19-2024 17:59:48: SVR: Got RA log. -11-19-2024 17:59:48: SVR-TRACE: Got connection. -11-19-2024 17:59:48: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:48: SVR: Methods called correctly -11-19-2024 17:59:48: SVR: Performing end to end verification... -11-19-2024 17:59:48: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:48: SVR: Exception inserting into table. -11-19-2024 17:59:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: SVR-ERROR: Exception at: -11-19-2024 17:59:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:457) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:453) - ... 41 more - -11-19-2024 17:59:48: SVR: Cleanup -11-19-2024 17:59:48: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: Test: returning from running in a jsp vehicle -11-19-2024 17:59:48: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:48: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:48: Opened connection to http://localhost:8080/localTx_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:48: TRACE: got outputstream -11-19-2024 17:59:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkListenerImplementationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testname=testWorkListenerImplementation -11-19-2024 17:59:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:48: SVR-TRACE: **runmethod=testWorkListenerImplementation -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkListenerImplementation_setup -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkListenerImplementation_cleanup -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:48: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:48: SVR: Performing callback verification... -11-19-2024 17:59:48: SVR: Got RA log. -11-19-2024 17:59:48: SVR-TRACE: Got connection. -11-19-2024 17:59:48: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:48: SVR: Methods called correctly -11-19-2024 17:59:48: SVR: Performing end to end verification... -11-19-2024 17:59:48: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:48: SVR: Exception inserting into table. -11-19-2024 17:59:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: SVR-ERROR: Exception at: -11-19-2024 17:59:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:237) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:233) - ... 41 more - -11-19-2024 17:59:48: SVR: Cleanup -11-19-2024 17:59:48: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: Test: returning from running in a jsp vehicle -11-19-2024 17:59:48: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:48: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:48: Opened connection to http://localhost:8080/localTx_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:48: TRACE: got outputstream -11-19-2024 17:59:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkManagerImplementaionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_jsp_vehicle/localTx_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ** IN getRunMethod: testname=testWorkManagerImplementaion -11-19-2024 17:59:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:48: SVR-TRACE: **runmethod=testWorkManagerImplementaion -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkManagerImplementaion_setup -11-19-2024 17:59:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkManagerImplementaion_cleanup -11-19-2024 17:59:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:48: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:48: SVR: Performing callback verification... -11-19-2024 17:59:48: SVR: Got RA log. -11-19-2024 17:59:48: SVR-TRACE: Got connection. -11-19-2024 17:59:48: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:48: SVR: LocalTxResourceAdapter WorkManager Not Null. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: LocalTxResourceAdapter WorkManager Not Null. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Work Object Submitted. -11-19-2024 17:59:48: SVR: Methods called correctly -11-19-2024 17:59:48: SVR: Performing end to end verification... -11-19-2024 17:59:48: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:48: SVR: Exception inserting into table. -11-19-2024 17:59:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: SVR-ERROR: Exception at: -11-19-2024 17:59:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:162) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:158) - ... 41 more - -11-19-2024 17:59:48: SVR: Cleanup -11-19-2024 17:59:48: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:48: Test: returning from running in a jsp vehicle -11-19-2024 17:59:48: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 8, Failures: 0, Errors: 8, Skipped: 0, Time elapsed: 5.919 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest.testForUnsharedTimer Time elapsed: 0.215 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest.testNestedWork Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest.testScheduleWork Time elapsed: 0.012 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest.testScheduleWorkListener Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest.testUnknownWorkDuration Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest.testWorkCompletedException Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest.testWorkListenerImplementation Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1JspTest.testWorkManagerImplementaion Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest -Nov 19, 2024 5:59:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:48 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:50 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:50 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:50 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:53: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:53: Opened connection to http://localhost:8080/localTx_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:53: TRACE: got outputstream -11-19-2024 17:59:53: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:53: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 17:59:53: SVR-TRACE: In doPost -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:53: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testForUnsharedTimernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testname=testForUnsharedTimer -11-19-2024 17:59:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:53: SVR-TRACE: **runmethod=testForUnsharedTimer -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testForUnsharedTimer_setup -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testForUnsharedTimer_cleanup -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:53: SVR: Performing callback verification... -11-19-2024 17:59:53: SVR: Got RA log. -11-19-2024 17:59:53: SVR-TRACE: Got connection. -11-19-2024 17:59:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:53: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:53: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:53: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:53: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:53: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:53: SVR: New Timer Provided by BootstrapContext -11-19-2024 17:59:53: SVR: Methods called correctly -11-19-2024 17:59:53: SVR: Performing end to end verification... -11-19-2024 17:59:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:53: SVR: Exception inserting into table. -11-19-2024 17:59:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR-ERROR: Exception at: -11-19-2024 17:59:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:554) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:550) - ... 38 more - -11-19-2024 17:59:53: SVR: Cleanup -11-19-2024 17:59:53: SVR: Test running in servlet vehicle failed -11-19-2024 17:59:53: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: Test: returning from running in a servlet vehicle -11-19-2024 17:59:53: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:53: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:53: Opened connection to http://localhost:8080/localTx_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:53: TRACE: got outputstream -11-19-2024 17:59:53: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:53: SVR-TRACE: In doPost -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:53: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testname=testNestedWork -11-19-2024 17:59:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:53: SVR-TRACE: **runmethod=testNestedWork -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWork_setup -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWork_cleanup -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:53: SVR: Performing callback verification... -11-19-2024 17:59:53: SVR: Got RA log. -11-19-2024 17:59:53: SVR-TRACE: Got connection. -11-19-2024 17:59:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:53: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR: Methods called correctly -11-19-2024 17:59:53: SVR: Performing end to end verification... -11-19-2024 17:59:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:53: SVR: Exception inserting into table. -11-19-2024 17:59:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: Test: returning from running in a servlet vehicle -11-19-2024 17:59:53: SVR-ERROR: Exception at: -11-19-2024 17:59:53: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:627) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:623) - ... 38 more - -11-19-2024 17:59:53: SVR: Cleanup -11-19-2024 17:59:53: SVR: Test running in servlet vehicle failed -Nov 19, 2024 5:59:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:53: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:53: Opened connection to http://localhost:8080/localTx_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:53: TRACE: got outputstream -11-19-2024 17:59:53: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:53: SVR-TRACE: In doPost -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:53: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWork -11-19-2024 17:59:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:53: SVR-TRACE: **runmethod=testScheduleWork -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWork_setup -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWork_cleanup -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:53: SVR: Performing callback verification... -11-19-2024 17:59:53: SVR: Got RA log. -11-19-2024 17:59:53: SVR-TRACE: Got connection. -11-19-2024 17:59:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:53: SVR: Methods called correctly -11-19-2024 17:59:53: SVR: Performing end to end verification... -11-19-2024 17:59:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:53: SVR: Exception inserting into table. -11-19-2024 17:59:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR-ERROR: Exception at: -11-19-2024 17:59:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:310) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:306) - ... 38 more - -11-19-2024 17:59:53: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR: Cleanup -11-19-2024 17:59:53: SVR: Test running in servlet vehicle failed -11-19-2024 17:59:53: Test: returning from running in a servlet vehicle -11-19-2024 17:59:53: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:53: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:53: Opened connection to http://localhost:8080/localTx_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:53: TRACE: got outputstream -11-19-2024 17:59:53: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:53: SVR-TRACE: In doPost -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:53: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorkListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWorkListener -11-19-2024 17:59:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:53: SVR-TRACE: **runmethod=testScheduleWorkListener -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWorkListener_setup -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWorkListener_cleanup -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:53: SVR: Performing callback verification... -11-19-2024 17:59:53: SVR: Got RA log. -11-19-2024 17:59:53: SVR-TRACE: Got connection. -11-19-2024 17:59:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:53: SVR: Methods called correctly -11-19-2024 17:59:53: SVR: Performing end to end verification... -11-19-2024 17:59:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:53: SVR: Exception inserting into table. -11-19-2024 17:59:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR-ERROR: Exception at: -11-19-2024 17:59:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:383) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:379) - ... 38 more - -11-19-2024 17:59:53: SVR: Cleanup -11-19-2024 17:59:53: SVR: Test running in servlet vehicle failed -11-19-2024 17:59:53: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: Test: returning from running in a servlet vehicle -11-19-2024 17:59:53: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:53: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:53: Opened connection to http://localhost:8080/localTx_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:53: TRACE: got outputstream -11-19-2024 17:59:53: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:53: SVR-TRACE: In doPost -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:53: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testUnknownWorkDurationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testname=testUnknownWorkDuration -11-19-2024 17:59:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:53: SVR-TRACE: **runmethod=testUnknownWorkDuration -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testUnknownWorkDuration_setup -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testUnknownWorkDuration_cleanup -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:53: SVR: Performing callback verification... -11-19-2024 17:59:53: SVR: Got RA log. -11-19-2024 17:59:53: SVR-TRACE: Got connection. -11-19-2024 17:59:53: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: Test: returning from running in a servlet vehicle -11-19-2024 17:59:53: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:53: SVR: Methods called correctly -11-19-2024 17:59:53: SVR: Performing end to end verification... -11-19-2024 17:59:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:53: SVR: Exception inserting into table. -11-19-2024 17:59:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR-ERROR: Exception at: -11-19-2024 17:59:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:709) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:705) - ... 38 more - -11-19-2024 17:59:53: SVR: Cleanup -11-19-2024 17:59:53: SVR: Test running in servlet vehicle failed -Nov 19, 2024 5:59:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:53: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:53: Opened connection to http://localhost:8080/localTx_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:53: TRACE: got outputstream -11-19-2024 17:59:53: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:53: SVR-TRACE: In doPost -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:53: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkCompletedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testname=testWorkCompletedException -11-19-2024 17:59:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:53: SVR-TRACE: **runmethod=testWorkCompletedException -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkCompletedException_setup -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkCompletedException_cleanup -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:53: SVR: Performing callback verification... -11-19-2024 17:59:53: SVR: Got RA log. -11-19-2024 17:59:53: SVR-TRACE: Got connection. -11-19-2024 17:59:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:53: SVR: Methods called correctly -11-19-2024 17:59:53: SVR: Performing end to end verification... -11-19-2024 17:59:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:53: SVR: Exception inserting into table. -11-19-2024 17:59:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR-ERROR: Exception at: -11-19-2024 17:59:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:457) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:453) - ... 38 more - -11-19-2024 17:59:53: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR: Cleanup -11-19-2024 17:59:53: SVR: Test running in servlet vehicle failed -11-19-2024 17:59:53: Test: returning from running in a servlet vehicle -11-19-2024 17:59:53: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:53: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:53: Opened connection to http://localhost:8080/localTx_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:53: TRACE: got outputstream -11-19-2024 17:59:53: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:53: SVR-TRACE: In doPost -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:53: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkListenerImplementationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testname=testWorkListenerImplementation -11-19-2024 17:59:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:53: SVR-TRACE: **runmethod=testWorkListenerImplementation -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkListenerImplementation_setup -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkListenerImplementation_cleanup -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:53: SVR: Performing callback verification... -11-19-2024 17:59:53: SVR: Got RA log. -11-19-2024 17:59:53: SVR-TRACE: Got connection. -11-19-2024 17:59:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:53: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR: Methods called correctly -11-19-2024 17:59:53: SVR: Performing end to end verification... -11-19-2024 17:59:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:53: Test: returning from running in a servlet vehicle -11-19-2024 17:59:53: SVR: Exception inserting into table. -11-19-2024 17:59:53: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR-ERROR: Exception at: -11-19-2024 17:59:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:237) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:233) - ... 38 more - -11-19-2024 17:59:53: SVR: Cleanup -11-19-2024 17:59:53: SVR: Test running in servlet vehicle failed -Nov 19, 2024 5:59:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:53 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=localTx_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:53: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:53: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:53: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:53: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:53: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 17:59:53: Opened connection to http://localhost:8080/localTx_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 17:59:53: TRACE: got outputstream -11-19-2024 17:59:53: TRACE: wrote objects to the servlet vehicle -11-19-2024 17:59:53: SVR-TRACE: In doPost -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 17:59:53: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 17:59:53: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 17:59:53: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkManagerImplementaionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=localTx_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:53: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/localTx_workmgt_servlet_vehicle/localTx_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:53: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:53: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:53: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ** IN getRunMethod: testname=testWorkManagerImplementaion -11-19-2024 17:59:53: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:53: SVR-TRACE: **runmethod=testWorkManagerImplementaion -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkManagerImplementaion_setup -11-19-2024 17:59:53: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:53: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkManagerImplementaion_cleanup -11-19-2024 17:59:53: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:53: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1 -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:53: SVR: Using: java:comp/env/eis/whitebox-tx -11-19-2024 17:59:53: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:53: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:53: SVR: Performing callback verification... -11-19-2024 17:59:53: SVR: Got RA log. -11-19-2024 17:59:53: SVR-TRACE: Got connection. -11-19-2024 17:59:53: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed] -11-19-2024 17:59:53: SVR: LocalTxResourceAdapter WorkManager Not Null. -11-19-2024 17:59:53: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: Test: returning from running in a servlet vehicle -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: TRACE: SLEPT FOR: 0 -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: LocalTxResourceAdapter WorkManager Not Null. -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: Work Object Submitted. -11-19-2024 17:59:53: SVR: Methods called correctly -11-19-2024 17:59:53: SVR: Performing end to end verification... -11-19-2024 17:59:53: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:53: SVR: Exception inserting into table. -11-19-2024 17:59:53: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:53: SVR-ERROR: Exception at: -11-19-2024 17:59:53: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:162) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:158) - ... 38 more - -11-19-2024 17:59:53: SVR: Cleanup -11-19-2024 17:59:53: SVR: Test running in servlet vehicle failed -[ERROR] Tests run: 8, Failures: 0, Errors: 8, Skipped: 0, Time elapsed: 4.726 s <<< FAILURE! - in com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest.testForUnsharedTimer Time elapsed: 0.018 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest.testNestedWork Time elapsed: 0.012 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest.testScheduleWork Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest.testScheduleWorkListener Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest.testUnknownWorkDuration Time elapsed: 0.012 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest.testWorkCompletedException Time elapsed: 0.012 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest.testWorkListenerImplementation Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1ServletTest.testWorkManagerImplementaion Time elapsed: 0.018 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.noTx.connection.connectionClient1JspTest -Nov 19, 2024 5:59:53 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:53 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:54 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:54 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:54 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:58 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=connection_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:58: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:58: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:58: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:58: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:58: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:58: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:58: Opened connection to http://localhost:8080/connection_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:58: TRACE: got outputstream -11-19-2024 17:59:58: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:58: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:58: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:58: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:58: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:58: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testGetConnection1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=connection_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:58: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:58: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:58: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:58: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_jsp_vehicle/connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/connection/connectionClient1.class -11-19-2024 17:59:58: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_jsp_vehicle/connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:58: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_jsp_vehicle/connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:58: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:58: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:58: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 17:59:58: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 17:59:58: SVR-TRACE: ** IN getRunMethod: testname=testGetConnection1 -11-19-2024 17:59:58: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:58: SVR-TRACE: **runmethod=testGetConnection1 -11-19-2024 17:59:58: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:58: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:58: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testGetConnection1_setup -11-19-2024 17:59:58: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:58: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 17:59:58: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:58: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testGetConnection1_cleanup -11-19-2024 17:59:58: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:58: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 17:59:58: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:58: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 17:59:58: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 17:59:58: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@32e4830a -11-19-2024 17:59:58: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@d0df84b -11-19-2024 17:59:58: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:58: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:58: SVR: Got connection from the TSDataSource. -11-19-2024 17:59:58: SVR: Checking for Connection Validity. -11-19-2024 17:59:58: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:58: SVR: Exception inserting into table. -11-19-2024 17:59:58: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:58: SVR-ERROR: Exception at: -11-19-2024 17:59:58: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:142) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:138) - ... 41 more - -11-19-2024 17:59:58: SVR: Cleanup -11-19-2024 17:59:58: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:58: SVR: Test running in jsp vehicle failed -11-19-2024 17:59:58: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 17:59:58: Test: returning from running in a jsp vehicle -11-19-2024 17:59:58: TRACE: SLEPT FOR: 0 -Nov 19, 2024 5:59:58 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 5:59:58 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=connection_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 17:59:58: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 17:59:58: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:58: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 17:59:58: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 17:59:58: TRACE: in ServiceEETest.run() method -11-19-2024 17:59:58: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 17:59:58: Opened connection to http://localhost:8080/connection_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 17:59:58: TRACE: got outputstream -11-19-2024 17:59:58: TRACE: wrote objects to the jsp vehicle -11-19-2024 17:59:58: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 17:59:58: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 17:59:58: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 17:59:58: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 17:59:58: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testgetConnectionWithParameter1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=connection_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 17:59:58: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 17:59:58: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 17:59:58: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 17:59:58: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_jsp_vehicle/connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/connection/connectionClient1.class -11-19-2024 17:59:58: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_jsp_vehicle/connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:58: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_jsp_vehicle/connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 17:59:58: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 17:59:58: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 17:59:58: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 17:59:58: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 17:59:58: SVR-TRACE: ** IN getRunMethod: testname=testgetConnectionWithParameter1 -11-19-2024 17:59:58: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 17:59:58: SVR-TRACE: **runmethod=testgetConnectionWithParameter1 -11-19-2024 17:59:58: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 17:59:58: SVR-TRACE: No setupMethod annotation present -11-19-2024 17:59:58: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testgetConnectionWithParameter1_setup -11-19-2024 17:59:58: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 17:59:58: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 17:59:58: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 17:59:58: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testgetConnectionWithParameter1_cleanup -11-19-2024 17:59:58: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 17:59:58: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 17:59:58: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 17:59:58: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 17:59:58: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 17:59:58: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1a2023ee -11-19-2024 17:59:58: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@14a06436 -11-19-2024 17:59:58: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 17:59:58: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 17:59:58: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 17:59:58: SVR: Got connection object from the TSDataSource. -11-19-2024 17:59:58: SVR: Checking for Connection Validity. -11-19-2024 17:59:58: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 17:59:58: SVR: Values inserted into table! -11-19-2024 17:59:58: SVR: Table has been dropped! -11-19-2024 17:59:58: SVR: Cleanup -11-19-2024 17:59:58: SVR-TRACE: Closing connection in cleanup. -11-19-2024 17:59:58: SVR: Test running in jsp vehicle passed -11-19-2024 17:59:58: Test status from a jsp: 0: -11-19-2024 17:59:58: Test: returning from running in a jsp vehicle -11-19-2024 17:59:58: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 5.339 s <<< FAILURE! - in com.sun.ts.tests.connector.noTx.connection.connectionClient1JspTest -[ERROR] com.sun.ts.tests.connector.noTx.connection.connectionClient1JspTest.testGetConnection1 Time elapsed: 0.179 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.noTx.connection.connectionClient1ServletTest -Nov 19, 2024 5:59:58 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 5:59:58 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 5:59:59 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 5:59:59 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 5:59:59 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:02 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:03 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=connection_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:03: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:03: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:03: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:03: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:03: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:03: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:03: Opened connection to http://localhost:8080/connection_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:03: TRACE: got outputstream -11-19-2024 18:00:03: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:03: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:00:03: SVR-TRACE: In doPost -11-19-2024 18:00:03: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:03: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:03: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:03: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:03: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:03: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testGetConnection1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=connection_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:03: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_servlet_vehicle/connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/connection/connectionClient1.class -11-19-2024 18:00:03: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_servlet_vehicle/connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:03: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_servlet_vehicle/connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:03: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:03: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:03: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 18:00:03: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 18:00:03: SVR-TRACE: ** IN getRunMethod: testname=testGetConnection1 -11-19-2024 18:00:03: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:03: SVR-TRACE: **runmethod=testGetConnection1 -11-19-2024 18:00:03: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:03: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:03: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testGetConnection1_setup -11-19-2024 18:00:03: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:03: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 18:00:03: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:03: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testGetConnection1_cleanup -11-19-2024 18:00:03: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:03: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 18:00:03: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:03: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:03: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:03: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@721b04ab -11-19-2024 18:00:03: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@6cbac0c -11-19-2024 18:00:03: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:03: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:03: SVR: Got connection from the TSDataSource. -11-19-2024 18:00:03: SVR: Checking for Connection Validity. -11-19-2024 18:00:03: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:03: SVR: Exception inserting into table. -11-19-2024 18:00:03: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:03: SVR-ERROR: Exception at: -11-19-2024 18:00:03: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:142) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.connection.connectionClient1.testGetConnection1(connectionClient1.java:138) - ... 38 more - -11-19-2024 18:00:03: SVR: Cleanup -11-19-2024 18:00:03: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:03: SVR: Test running in servlet vehicle failed -11-19-2024 18:00:03: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:03: Test: returning from running in a servlet vehicle -11-19-2024 18:00:03: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:03 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:03 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=connection_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:03: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:03: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:03: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:03: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:03: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:03: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:03: Opened connection to http://localhost:8080/connection_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:03: TRACE: got outputstream -11-19-2024 18:00:03: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:03: SVR-TRACE: In doPost -11-19-2024 18:00:03: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:03: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:03: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:03: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:03: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:03: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testgetConnectionWithParameter1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=connection_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:03: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_servlet_vehicle/connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/connection/connectionClient1.class -11-19-2024 18:00:03: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_servlet_vehicle/connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:03: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/connection_servlet_vehicle/connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:03: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:03: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:03: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 18:00:03: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 18:00:03: SVR-TRACE: ** IN getRunMethod: testname=testgetConnectionWithParameter1 -11-19-2024 18:00:03: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:03: SVR-TRACE: **runmethod=testgetConnectionWithParameter1 -11-19-2024 18:00:03: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:03: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:03: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testgetConnectionWithParameter1_setup -11-19-2024 18:00:03: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:03: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 18:00:03: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:03: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testgetConnectionWithParameter1_cleanup -11-19-2024 18:00:03: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:03: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.connection.connectionClient1 -11-19-2024 18:00:03: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:03: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:03: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:03: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7547a4a3 -11-19-2024 18:00:03: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@2b6d5c1b -11-19-2024 18:00:03: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:03: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:03: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:03: SVR: Got connection object from the TSDataSource. -11-19-2024 18:00:03: SVR: Checking for Connection Validity. -11-19-2024 18:00:03: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:03: SVR: Values inserted into table! -11-19-2024 18:00:03: SVR: Table has been dropped! -11-19-2024 18:00:03: SVR: Cleanup -11-19-2024 18:00:03: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:03: SVR: Test running in servlet vehicle passed -11-19-2024 18:00:03: Test status from a servlet: 0: -11-19-2024 18:00:03: Test: returning from running in a servlet vehicle -11-19-2024 18:00:03: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 4.491 s <<< FAILURE! - in com.sun.ts.tests.connector.noTx.connection.connectionClient1ServletTest -[ERROR] com.sun.ts.tests.connector.noTx.connection.connectionClient1ServletTest.testGetConnection1 Time elapsed: 0.021 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.noTx.event.eventClient1JspTest -Nov 19, 2024 6:00:03 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:05 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:05 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:05 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:07 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.event.eventClient1, vehicle: jsp -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:07 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.event.eventClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=event_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:07: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:07: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:07: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:07: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:07: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:07: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:07: Opened connection to http://localhost:8080/event_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:07: TRACE: got outputstream -11-19-2024 18:00:07: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:08: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:08: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:08: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:08: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:08: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:08: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:08: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/event_jsp_vehicle/event_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/event/eventClient1.class -11-19-2024 18:00:08: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/event_jsp_vehicle/event_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:08: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnectionEventListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=event_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.event.eventClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:08: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:08: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/event_jsp_vehicle/event_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:08: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:08: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:08: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.event.eventClient1 -11-19-2024 18:00:08: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.event.eventClient1 -11-19-2024 18:00:08: SVR-TRACE: ** IN getRunMethod: testname=testConnectionEventListener -11-19-2024 18:00:08: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:08: SVR-TRACE: **runmethod=testConnectionEventListener -11-19-2024 18:00:08: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:08: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:08: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnectionEventListener_setup -11-19-2024 18:00:08: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:08: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.event.eventClient1 -11-19-2024 18:00:08: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:08: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnectionEventListener_cleanup -11-19-2024 18:00:08: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:08: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.event.eventClient1 -11-19-2024 18:00:08: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:08: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:08: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:08: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:08: SVR: Got connection. -11-19-2024 18:00:08: SVR-TRACE: [TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.setLogWriter:out:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:] -11-19-2024 18:00:08: Test status from a jsp: 0: -11-19-2024 18:00:08: Test: returning from running in a jsp vehicle -11-19-2024 18:00:08: SVR: CONNECTION_CLOSED called correctly. -11-19-2024 18:00:08: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:08: SVR: Cleanup -11-19-2024 18:00:08: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:08: SVR: Test running in jsp vehicle passed -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.935 s - in com.sun.ts.tests.connector.noTx.event.eventClient1JspTest -[INFO] Running com.sun.ts.tests.connector.noTx.event.eventClient1ServletTest -Nov 19, 2024 6:00:08 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:12 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.event.eventClient1, vehicle: servlet -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:12 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.event.eventClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=event_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:12: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:12: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:12: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:12: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:12: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:12: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:12: Opened connection to http://localhost:8080/event_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:12: TRACE: got outputstream -11-19-2024 18:00:12: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:12: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:00:12: SVR-TRACE: In doPost -11-19-2024 18:00:12: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:12: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:12: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:12: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:12: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:12: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnectionEventListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=event_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.event.eventClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:12: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/event_servlet_vehicle/event_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/event/eventClient1.class -11-19-2024 18:00:12: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/event_servlet_vehicle/event_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:12: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/event_servlet_vehicle/event_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:12: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:12: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:12: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.event.eventClient1 -11-19-2024 18:00:12: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.event.eventClient1 -11-19-2024 18:00:12: SVR-TRACE: ** IN getRunMethod: testname=testConnectionEventListener -11-19-2024 18:00:12: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:12: SVR-TRACE: **runmethod=testConnectionEventListener -11-19-2024 18:00:12: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:12: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:12: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnectionEventListener_setup -11-19-2024 18:00:12: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:12: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.event.eventClient1 -11-19-2024 18:00:12: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:12: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnectionEventListener_cleanup -11-19-2024 18:00:12: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:12: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.event.eventClient1 -11-19-2024 18:00:12: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:12: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:12: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:12: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:12: SVR: Got connection. -11-19-2024 18:00:12: Test status from a servlet: 0: -11-19-2024 18:00:12: Test: returning from running in a servlet vehicle -11-19-2024 18:00:12: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:12: SVR-TRACE: [TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.setLogWriter:out:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:] -11-19-2024 18:00:12: SVR: CONNECTION_CLOSED called correctly. -11-19-2024 18:00:12: SVR: Cleanup -11-19-2024 18:00:12: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:12: SVR: Test running in servlet vehicle passed -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.557 s - in com.sun.ts.tests.connector.noTx.event.eventClient1ServletTest -[INFO] Running com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1JspTest -Nov 19, 2024 6:00:12 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:13 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:13 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:13 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:15 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:15 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:15 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:17 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:17: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:17: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:17: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:17: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:17: Opened connection to http://localhost:8080/lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:17: TRACE: got outputstream -11-19-2024 18:00:17: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:17: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:17: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:17: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:17: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:17: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA -11-19-2024 18:00:17: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:17: SVR-TRACE: **runmethod=testAssociationMCFandRA -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA_setup -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:17: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA_cleanup -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:17: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:17: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:17: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:17: SVR: Performing callback verification... -11-19-2024 18:00:17: SVR: Got RA log. -11-19-2024 18:00:17: SVR-TRACE: Got connection. -11-19-2024 18:00:17: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:17: SVR: Methods called correctly -11-19-2024 18:00:17: SVR: Performing end to end verification... -11-19-2024 18:00:17: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:17: SVR: Exception inserting into table. -11-19-2024 18:00:17: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: SVR-ERROR: Exception at: -11-19-2024 18:00:17: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:156) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:152) - ... 41 more - -11-19-2024 18:00:17: SVR: Cleanup -11-19-2024 18:00:17: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:17: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: Test: returning from running in a jsp vehicle -11-19-2024 18:00:17: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:17 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:17: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:17: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:17: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:17: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:17: Opened connection to http://localhost:8080/lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:17: TRACE: got outputstream -11-19-2024 18:00:17: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:17: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRA2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:17: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:17: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:17: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:17: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA2 -11-19-2024 18:00:17: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:17: SVR-TRACE: **runmethod=testAssociationMCFandRA2 -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA2_setup -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:17: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA2_cleanup -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:17: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:17: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:17: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:17: SVR: Performing callback verification... -11-19-2024 18:00:17: SVR: Got RA log. -11-19-2024 18:00:17: SVR-TRACE: Got connection. -11-19-2024 18:00:17: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:17: SVR: Methods called correctly -11-19-2024 18:00:17: Test status from a jsp: 0: -11-19-2024 18:00:17: SVR: Performing end to end verification... -11-19-2024 18:00:17: Test: returning from running in a jsp vehicle -11-19-2024 18:00:17: SVR: Cleanup -11-19-2024 18:00:17: SVR: Test running in jsp vehicle passed -11-19-2024 18:00:17: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:17 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:17: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:17: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:17: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:17: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:17: Opened connection to http://localhost:8080/lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:17: TRACE: got outputstream -11-19-2024 18:00:17: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:17: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testBootstrapforNullnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:17: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:17: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:17: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:17: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testname=testBootstrapforNull -11-19-2024 18:00:17: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:17: SVR-TRACE: **runmethod=testBootstrapforNull -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testBootstrapforNull_setup -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:17: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testBootstrapforNull_cleanup -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:17: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:17: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:17: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:17: SVR: Performing callback verification... -11-19-2024 18:00:17: SVR: Got RA log. -11-19-2024 18:00:17: SVR-TRACE: Got connection. -11-19-2024 18:00:17: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:17: SVR: Methods called correctly -11-19-2024 18:00:17: SVR: Performing end to end verification... -11-19-2024 18:00:17: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:17: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: SVR: Exception inserting into table. -11-19-2024 18:00:17: Test: returning from running in a jsp vehicle -11-19-2024 18:00:17: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: SVR-ERROR: Exception at: -11-19-2024 18:00:17: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:285) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:281) - ... 41 more - -11-19-2024 18:00:17: SVR: Cleanup -11-19-2024 18:00:17: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:17: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:17 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:17: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:17: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:17: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:17: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:17: Opened connection to http://localhost:8080/lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:17: TRACE: got outputstream -11-19-2024 18:00:17: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:17: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testInstantiationOfRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:17: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:17: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:17: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:17: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testname=testInstantiationOfRA -11-19-2024 18:00:17: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:17: SVR-TRACE: **runmethod=testInstantiationOfRA -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testInstantiationOfRA_setup -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:17: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testInstantiationOfRA_cleanup -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:17: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:17: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:17: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:17: SVR: Performing callback verification... -11-19-2024 18:00:17: SVR: Got RA log. -11-19-2024 18:00:17: SVR-TRACE: Got connection. -11-19-2024 18:00:17: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:17: SVR: Methods called correctly -11-19-2024 18:00:17: SVR: Performing end to end verification... -11-19-2024 18:00:17: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:17: SVR: Exception inserting into table. -11-19-2024 18:00:17: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: SVR-ERROR: Exception at: -11-19-2024 18:00:17: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:358) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:354) - ... 41 more - -11-19-2024 18:00:17: SVR: Cleanup -11-19-2024 18:00:17: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:17: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: Test: returning from running in a jsp vehicle -11-19-2024 18:00:17: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:17 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:17: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:17: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:17: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:17: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:17: Opened connection to http://localhost:8080/lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:17: TRACE: got outputstream -11-19-2024 18:00:17: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:17: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMCFcalledOncenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:17: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:17: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:17: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:17: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testname=testMCFcalledOnce -11-19-2024 18:00:17: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:17: SVR-TRACE: **runmethod=testMCFcalledOnce -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMCFcalledOnce_setup -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:17: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMCFcalledOnce_cleanup -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:17: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:17: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:17: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:17: SVR: Performing callback verification... -11-19-2024 18:00:17: SVR: Got RA log. -11-19-2024 18:00:17: SVR-TRACE: Got connection. -11-19-2024 18:00:17: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:17: SVR: Methods called correctly -11-19-2024 18:00:17: SVR: Performing end to end verification... -11-19-2024 18:00:17: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:17: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: Test: returning from running in a jsp vehicle -11-19-2024 18:00:17: SVR: Exception inserting into table. -11-19-2024 18:00:17: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:17: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: SVR-ERROR: Exception at: -11-19-2024 18:00:17: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:507) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:503) - ... 41 more - -11-19-2024 18:00:17: SVR: Cleanup -11-19-2024 18:00:17: SVR: Test running in jsp vehicle failed -Nov 19, 2024 6:00:17 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:17: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:17: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:17: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:17: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:17: Opened connection to http://localhost:8080/lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:17: TRACE: got outputstream -11-19-2024 18:00:17: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:17: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRASharabilitynullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:17: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:17: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:17: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:17: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testname=testRASharability -11-19-2024 18:00:17: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:17: SVR-TRACE: **runmethod=testRASharability -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRASharability_setup -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:17: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRASharability_cleanup -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:17: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:17: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:17: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:17: SVR: Performing callback verification... -11-19-2024 18:00:17: SVR: Got RA log. -11-19-2024 18:00:17: SVR-TRACE: Got connection. -11-19-2024 18:00:17: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:17: SVR: Methods called correctly -11-19-2024 18:00:17: SVR: Performing end to end verification... -11-19-2024 18:00:17: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:17: SVR: Exception inserting into table. -11-19-2024 18:00:17: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: SVR-ERROR: Exception at: -11-19-2024 18:00:17: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: Test: returning from running in a jsp vehicle -11-19-2024 18:00:17: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:434) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:430) - ... 41 more - -11-19-2024 18:00:17: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:17: SVR: Cleanup -11-19-2024 18:00:17: SVR: Test running in jsp vehicle failed -Nov 19, 2024 6:00:17 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:17 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:17: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:17: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:17: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:17: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:17: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:17: Opened connection to http://localhost:8080/lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:17: TRACE: got outputstream -11-19-2024 18:00:17: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:17: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:17: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRAforJavaBeannullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:17: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:17: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:17: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_jsp_vehicle/lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:17: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:17: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:17: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ** IN getRunMethod: testname=testRAforJavaBean -11-19-2024 18:00:17: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:17: SVR-TRACE: **runmethod=testRAforJavaBean -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRAforJavaBean_setup -11-19-2024 18:00:17: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:17: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRAforJavaBean_cleanup -11-19-2024 18:00:17: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:17: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:17: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:17: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:17: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:17: SVR: Performing callback verification... -11-19-2024 18:00:17: SVR: Got RA log. -11-19-2024 18:00:17: SVR-TRACE: Got connection. -11-19-2024 18:00:17: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:17: SVR: Methods called correctly -11-19-2024 18:00:17: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: SVR: Performing end to end verification... -11-19-2024 18:00:17: Test: returning from running in a jsp vehicle -11-19-2024 18:00:17: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:17: SVR: Exception inserting into table. -11-19-2024 18:00:17: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:17: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:17: SVR-ERROR: Exception at: -11-19-2024 18:00:17: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:580) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:576) - ... 41 more - -11-19-2024 18:00:17: SVR: Cleanup -11-19-2024 18:00:17: SVR: Test running in jsp vehicle failed -[ERROR] Tests run: 7, Failures: 0, Errors: 6, Skipped: 0, Time elapsed: 5.088 s <<< FAILURE! - in com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1JspTest -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1JspTest.testAssociationMCFandRA Time elapsed: 0.17 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1JspTest.testBootstrapforNull Time elapsed: 0.015 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1JspTest.testInstantiationOfRA Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1JspTest.testMCFcalledOnce Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1JspTest.testRASharability Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1JspTest.testRAforJavaBean Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1ServletTest -Nov 19, 2024 6:00:17 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:18 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:18 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:20 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:20 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:20 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:22 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:22: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:22: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:22: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:22: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:22: Opened connection to http://localhost:8080/lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:22: TRACE: got outputstream -11-19-2024 18:00:22: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:22: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:00:22: SVR-TRACE: In doPost -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:22: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:22: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:22: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:22: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:22: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA -11-19-2024 18:00:22: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:22: SVR-TRACE: **runmethod=testAssociationMCFandRA -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA_setup -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:22: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA_cleanup -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:22: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:22: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:22: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:22: SVR: Performing callback verification... -11-19-2024 18:00:22: SVR: Got RA log. -11-19-2024 18:00:22: SVR-TRACE: Got connection. -11-19-2024 18:00:22: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:22: SVR: Methods called correctly -11-19-2024 18:00:22: SVR: Performing end to end verification... -11-19-2024 18:00:22: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:22: SVR: Exception inserting into table. -11-19-2024 18:00:22: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: Test: returning from running in a servlet vehicle -11-19-2024 18:00:22: SVR-ERROR: Exception at: -11-19-2024 18:00:22: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:22: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:156) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:152) - ... 38 more - -11-19-2024 18:00:22: SVR: Cleanup -11-19-2024 18:00:22: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:22 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:22: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:22: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:22: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:22: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:22: Opened connection to http://localhost:8080/lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:22: TRACE: got outputstream -11-19-2024 18:00:22: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:22: SVR-TRACE: In doPost -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:22: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:22: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRA2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:22: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:22: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:22: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA2 -11-19-2024 18:00:22: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:22: SVR-TRACE: **runmethod=testAssociationMCFandRA2 -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA2_setup -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:22: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA2_cleanup -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:22: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:22: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:22: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:22: SVR: Performing callback verification... -11-19-2024 18:00:22: SVR: Got RA log. -11-19-2024 18:00:22: SVR-TRACE: Got connection. -11-19-2024 18:00:22: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:22: SVR: Methods called correctly -11-19-2024 18:00:22: Test status from a servlet: 0: -11-19-2024 18:00:22: SVR: Performing end to end verification... -11-19-2024 18:00:22: SVR: Cleanup -11-19-2024 18:00:22: SVR: Test running in servlet vehicle passed -11-19-2024 18:00:22: Test: returning from running in a servlet vehicle -11-19-2024 18:00:22: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:22 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:22: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:22: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:22: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:22: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:22: Opened connection to http://localhost:8080/lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:22: TRACE: got outputstream -11-19-2024 18:00:22: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:22: SVR-TRACE: In doPost -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:22: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:22: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testBootstrapforNullnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:22: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:22: Test: returning from running in a servlet vehicle -11-19-2024 18:00:22: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:22: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:22: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testname=testBootstrapforNull -11-19-2024 18:00:22: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:22: SVR-TRACE: **runmethod=testBootstrapforNull -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testBootstrapforNull_setup -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:22: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testBootstrapforNull_cleanup -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:22: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:22: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:22: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:22: SVR: Performing callback verification... -11-19-2024 18:00:22: SVR: Got RA log. -11-19-2024 18:00:22: SVR-TRACE: Got connection. -11-19-2024 18:00:22: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:22: SVR: Methods called correctly -11-19-2024 18:00:22: SVR: Performing end to end verification... -11-19-2024 18:00:22: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:22: SVR: Exception inserting into table. -11-19-2024 18:00:22: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR-ERROR: Exception at: -Nov 19, 2024 6:00:22 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -11-19-2024 18:00:22: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:285) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:281) - ... 38 more - -11-19-2024 18:00:22: SVR: Cleanup -11-19-2024 18:00:22: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:22: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:22: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:22: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:22: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:22: Opened connection to http://localhost:8080/lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:22: TRACE: got outputstream -11-19-2024 18:00:22: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:22: SVR-TRACE: In doPost -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:22: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:22: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testInstantiationOfRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:22: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:22: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:22: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: Test: returning from running in a servlet vehicle -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testname=testInstantiationOfRA -11-19-2024 18:00:22: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:22: SVR-TRACE: **runmethod=testInstantiationOfRA -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testInstantiationOfRA_setup -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:22: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testInstantiationOfRA_cleanup -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:22: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:22: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:22: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:22: SVR: Performing callback verification... -11-19-2024 18:00:22: SVR: Got RA log. -11-19-2024 18:00:22: SVR-TRACE: Got connection. -11-19-2024 18:00:22: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:22: SVR: Methods called correctly -11-19-2024 18:00:22: SVR: Performing end to end verification... -11-19-2024 18:00:22: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:22: SVR: Exception inserting into table. -11-19-2024 18:00:22: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR-ERROR: Exception at: -11-19-2024 18:00:22: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:358) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:354) - ... 38 more - -11-19-2024 18:00:22: SVR: Cleanup -11-19-2024 18:00:22: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:22 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:22: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:22: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:22: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:22: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:22: Opened connection to http://localhost:8080/lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:22: TRACE: got outputstream -11-19-2024 18:00:22: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:22: SVR-TRACE: In doPost -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:22: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:22: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMCFcalledOncenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:22: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:22: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:22: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testname=testMCFcalledOnce -11-19-2024 18:00:22: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:22: SVR-TRACE: **runmethod=testMCFcalledOnce -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMCFcalledOnce_setup -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:22: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMCFcalledOnce_cleanup -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:22: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:22: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:22: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:22: SVR: Performing callback verification... -11-19-2024 18:00:22: SVR: Got RA log. -11-19-2024 18:00:22: SVR-TRACE: Got connection. -11-19-2024 18:00:22: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: Test: returning from running in a servlet vehicle -11-19-2024 18:00:22: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:22: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:22: SVR: Methods called correctly -11-19-2024 18:00:22: SVR: Performing end to end verification... -11-19-2024 18:00:22: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:22: SVR: Exception inserting into table. -11-19-2024 18:00:22: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR-ERROR: Exception at: -11-19-2024 18:00:22: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:507) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:503) - ... 38 more - -11-19-2024 18:00:22: SVR: Cleanup -11-19-2024 18:00:22: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:22 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:22: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:22: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:22: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:22: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:22: Opened connection to http://localhost:8080/lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:22: TRACE: got outputstream -11-19-2024 18:00:22: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:22: SVR-TRACE: In doPost -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:22: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:22: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRASharabilitynullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:22: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:22: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:22: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testname=testRASharability -11-19-2024 18:00:22: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:22: SVR-TRACE: **runmethod=testRASharability -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRASharability_setup -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:22: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRASharability_cleanup -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:22: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:22: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:22: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:22: SVR: Performing callback verification... -11-19-2024 18:00:22: SVR: Got RA log. -11-19-2024 18:00:22: SVR-TRACE: Got connection. -11-19-2024 18:00:22: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:22: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR: Methods called correctly -11-19-2024 18:00:22: SVR: Performing end to end verification... -11-19-2024 18:00:22: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:22: Test: returning from running in a servlet vehicle -11-19-2024 18:00:22: SVR: Exception inserting into table. -11-19-2024 18:00:22: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:22: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR-ERROR: Exception at: -11-19-2024 18:00:22: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:434) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:430) - ... 38 more - -11-19-2024 18:00:22: SVR: Cleanup -11-19-2024 18:00:22: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:22 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:22 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:22: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:22: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:22: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:22: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:22: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:22: Opened connection to http://localhost:8080/lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:22: TRACE: got outputstream -11-19-2024 18:00:22: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:22: SVR-TRACE: In doPost -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:22: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:22: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:22: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRAforJavaBeannullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:22: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/lifecycle_servlet_vehicle/lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:22: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:22: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:22: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ** IN getRunMethod: testname=testRAforJavaBean -11-19-2024 18:00:22: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:22: SVR-TRACE: **runmethod=testRAforJavaBean -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRAforJavaBean_setup -11-19-2024 18:00:22: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:22: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRAforJavaBean_cleanup -11-19-2024 18:00:22: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:22: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1 -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:22: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:22: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:22: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:22: SVR: Performing callback verification... -11-19-2024 18:00:22: SVR: Got RA log. -11-19-2024 18:00:22: SVR-TRACE: Got connection. -11-19-2024 18:00:22: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:22: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR: Methods called correctly -11-19-2024 18:00:22: SVR: Performing end to end verification... -11-19-2024 18:00:22: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:22: Test: returning from running in a servlet vehicle -11-19-2024 18:00:22: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:22: SVR: Exception inserting into table. -11-19-2024 18:00:22: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:22: SVR-ERROR: Exception at: -11-19-2024 18:00:22: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:580) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:576) - ... 38 more - -11-19-2024 18:00:22: SVR: Cleanup -11-19-2024 18:00:22: SVR: Test running in servlet vehicle failed -[ERROR] Tests run: 7, Failures: 0, Errors: 6, Skipped: 0, Time elapsed: 5.268 s <<< FAILURE! - in com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1ServletTest -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1ServletTest.testAssociationMCFandRA Time elapsed: 0.021 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1ServletTest.testBootstrapforNull Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1ServletTest.testInstantiationOfRA Time elapsed: 0.021 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1ServletTest.testMCFcalledOnce Time elapsed: 0.024 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1ServletTest.testRASharability Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1ServletTest.testRAforJavaBean Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.noTx.security.securityClient1JspTest -Nov 19, 2024 6:00:23 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:23 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:23 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:23 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:24 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:24 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:24 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:25 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:25 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:26 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:26 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:27 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:27 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:28 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:28: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:28: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:28: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:28: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:28: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:28: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:28: Opened connection to http://localhost:8080/security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:28: TRACE: got outputstream -11-19-2024 18:00:28: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:28: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:28: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:28: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAppEISSignonnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:28: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:28: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/security/securityClient1.class -11-19-2024 18:00:28: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:28: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:28: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:28: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:28: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ** IN getRunMethod: testname=testAppEISSignon -11-19-2024 18:00:28: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:28: SVR-TRACE: **runmethod=testAppEISSignon -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:28: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:28: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAppEISSignon_setup -11-19-2024 18:00:28: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:28: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:28: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAppEISSignon_cleanup -11-19-2024 18:00:28: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:28: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:28: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-notx in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-notx] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.noTx.security.securityClient1.setup(securityClient1.java:96) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-notx - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 46 more - Suppressed: javax.naming.NameNotFoundException: No object bound to name java:module/env/eis/whitebox-notx in namespace JavaNamespace[name=security_jsp_vehicle/security_jsp_vehicle_web.war, keys=[java:module/, java:/, java:module/env, java:, java:module/env/, java:module]] - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:599) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 47 more - -11-19-2024 18:00:28: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-notx in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:28: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:28: SVR: Exception caught on creating connection. -11-19-2024 18:00:28: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null -11-19-2024 18:00:28: SVR-ERROR: Exception at: -11-19-2024 18:00:28: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testAppEISSignon(securityClient1.java:219) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testAppEISSignon(securityClient1.java:215) - ... 41 more - -11-19-2024 18:00:28: SVR: Cleanup -11-19-2024 18:00:28: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:28: SVR-ERROR: Exception on cleanup: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.close()" because "this.con" is null -11-19-2024 18:00:28: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.close()" because "this.con" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.cleanup(securityClient1.java:297) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:28: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:28: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null -11-19-2024 18:00:28: Test: returning from running in a jsp vehicle -11-19-2024 18:00:28: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:28 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:28: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:28: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:28: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:28: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:28: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:28: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:28: Opened connection to http://localhost:8080/security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:28: TRACE: got outputstream -11-19-2024 18:00:28: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:28: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:28: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:28: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testComponentManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:28: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:28: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/security/securityClient1.class -11-19-2024 18:00:28: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:28: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:28: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:28: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:28: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ** IN getRunMethod: testname=testComponentManaged -11-19-2024 18:00:28: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:28: SVR-TRACE: **runmethod=testComponentManaged -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:28: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:28: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testComponentManaged_setup -11-19-2024 18:00:28: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:28: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:28: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testComponentManaged_cleanup -11-19-2024 18:00:28: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:28: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:28: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-notx in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-notx] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.noTx.security.securityClient1.setup(securityClient1.java:96) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-notx - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 46 more - Suppressed: javax.naming.NameNotFoundException: No object bound to name java:module/env/eis/whitebox-notx in namespace JavaNamespace[name=security_jsp_vehicle/security_jsp_vehicle_web.war, keys=[java:module/, java:/, java:module/env, java:, java:module/env/, java:module]] - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:599) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 47 more - -11-19-2024 18:00:28: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-notx in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:28: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:28: SVR: Exception caught on creating connection. -11-19-2024 18:00:28: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null -11-19-2024 18:00:28: SVR-ERROR: Exception at: -11-19-2024 18:00:28: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testComponentManaged(securityClient1.java:176) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testComponentManaged(securityClient1.java:172) - ... 41 more - -11-19-2024 18:00:28: SVR: Cleanup -11-19-2024 18:00:28: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:28: SVR-ERROR: Exception on cleanup: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.close()" because "this.con" is null -11-19-2024 18:00:28: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.close()" because "this.con" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.cleanup(securityClient1.java:297) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:28: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:28: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null -11-19-2024 18:00:28: Test: returning from running in a jsp vehicle -11-19-2024 18:00:28: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:28 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:28: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:28: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:28: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:28: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:28: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:28: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:28: Opened connection to http://localhost:8080/security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:28: TRACE: got outputstream -11-19-2024 18:00:28: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:28: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:28: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:28: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnManagerAllocateConnectionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:28: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:28: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/security/securityClient1.class -11-19-2024 18:00:28: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:28: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:28: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:28: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:28: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ** IN getRunMethod: testname=testConnManagerAllocateConnection -11-19-2024 18:00:28: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:28: SVR-TRACE: **runmethod=testConnManagerAllocateConnection -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:28: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:28: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnManagerAllocateConnection_setup -11-19-2024 18:00:28: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:28: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:28: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnManagerAllocateConnection_cleanup -11-19-2024 18:00:28: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:28: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:28: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-notx in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-notx] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.noTx.security.securityClient1.setup(securityClient1.java:96) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-notx - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 46 more - Suppressed: javax.naming.NameNotFoundException: No object bound to name java:module/env/eis/whitebox-notx in namespace JavaNamespace[name=security_jsp_vehicle/security_jsp_vehicle_web.war, keys=[java:module/, java:/, java:module/env, java:, java:module/env/, java:module]] - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:599) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 47 more - -11-19-2024 18:00:28: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-notx in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:28: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:28: SVR: Exception caught on creating connection. -11-19-2024 18:00:28: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null -11-19-2024 18:00:28: SVR-ERROR: Exception at: -11-19-2024 18:00:28: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:264) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:260) - ... 41 more - -11-19-2024 18:00:28: SVR: Cleanup -11-19-2024 18:00:28: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:28: SVR-ERROR: Exception on cleanup: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.close()" because "this.con" is null -11-19-2024 18:00:28: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.close()" because "this.con" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.cleanup(securityClient1.java:297) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:28: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:28: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null -11-19-2024 18:00:28: Test: returning from running in a jsp vehicle -11-19-2024 18:00:28: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:28 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.security.securityClient1, vehicle: jsp -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:28 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:28: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:28: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:28: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:28: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:28: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:28: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:28: Opened connection to http://localhost:8080/security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:28: TRACE: got outputstream -11-19-2024 18:00:28: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:28: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:28: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:28: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testContainerManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:28: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:28: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:28: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/security/securityClient1.class -11-19-2024 18:00:28: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:28: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_jsp_vehicle/security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:28: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:28: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:28: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ** IN getRunMethod: testname=testContainerManaged -11-19-2024 18:00:28: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:28: SVR-TRACE: **runmethod=testContainerManaged -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:28: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:28: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testContainerManaged_setup -11-19-2024 18:00:28: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:28: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:28: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testContainerManaged_cleanup -11-19-2024 18:00:28: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:28: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:28: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:28: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-notx in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-notx] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.noTx.security.securityClient1.setup(securityClient1.java:96) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-notx - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 46 more - Suppressed: javax.naming.NameNotFoundException: No object bound to name java:module/env/eis/whitebox-notx in namespace JavaNamespace[name=security_jsp_vehicle/security_jsp_vehicle_web.war, keys=[java:module/, java:/, java:module/env, java:, java:module/env/, java:module]] - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:599) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 47 more - -11-19-2024 18:00:28: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-notx in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:28: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:28: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:28: SVR: Exception caught on creating connection. -11-19-2024 18:00:28: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null -11-19-2024 18:00:28: SVR-ERROR: Exception at: -11-19-2024 18:00:28: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testContainerManaged(securityClient1.java:130) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testContainerManaged(securityClient1.java:126) - ... 41 more - -11-19-2024 18:00:28: SVR: Cleanup -11-19-2024 18:00:28: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:28: SVR-ERROR: Exception on cleanup: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.close()" because "this.con" is null -11-19-2024 18:00:28: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.close()" because "this.con" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.cleanup(securityClient1.java:297) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:28: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:28: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null -11-19-2024 18:00:28: Test: returning from running in a jsp vehicle -11-19-2024 18:00:28: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 5.541 s <<< FAILURE! - in com.sun.ts.tests.connector.noTx.security.securityClient1JspTest -[ERROR] com.sun.ts.tests.connector.noTx.security.securityClient1JspTest.testAppEISSignon Time elapsed: 0.18 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null - -[ERROR] com.sun.ts.tests.connector.noTx.security.securityClient1JspTest.testComponentManaged Time elapsed: 0.016 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection(String, String)" because "this.ds2" is null - -[ERROR] com.sun.ts.tests.connector.noTx.security.securityClient1JspTest.testConnManagerAllocateConnection Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null - -[ERROR] com.sun.ts.tests.connector.noTx.security.securityClient1JspTest.testContainerManaged Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.getConnection()" because "this.ds1" is null - -[INFO] Running com.sun.ts.tests.connector.noTx.security.securityClient1ServletTest -Nov 19, 2024 6:00:28 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:28 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:29 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:29 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:29 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:30 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:30 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:30 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:31 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:31 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:31 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:32 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:32 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:33: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:33: Opened connection to http://localhost:8080/security_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:33: TRACE: got outputstream -11-19-2024 18:00:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:33: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:00:33: SVR-TRACE: In doPost -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAppEISSignonnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/security/securityClient1.class -11-19-2024 18:00:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ** IN getRunMethod: testname=testAppEISSignon -11-19-2024 18:00:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:33: SVR-TRACE: **runmethod=testAppEISSignon -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAppEISSignon_setup -11-19-2024 18:00:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAppEISSignon_cleanup -11-19-2024 18:00:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:33: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@17e7d674 -11-19-2024 18:00:33: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7707fc6c -11-19-2024 18:00:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:33: SVR: Got connection object from the TSDataSource. -11-19-2024 18:00:33: SVR: Checking for Connection Validity. -11-19-2024 18:00:33: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:33: SVR: Values inserted into table! -11-19-2024 18:00:33: SVR: Table has been dropped! -11-19-2024 18:00:33: SVR: Cleanup -11-19-2024 18:00:33: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:33: SVR: Test running in servlet vehicle passed -11-19-2024 18:00:33: Test status from a servlet: 0: -11-19-2024 18:00:33: Test: returning from running in a servlet vehicle -11-19-2024 18:00:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:33: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:33: Opened connection to http://localhost:8080/security_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:33: TRACE: got outputstream -11-19-2024 18:00:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:33: SVR-TRACE: In doPost -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testComponentManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/security/securityClient1.class -11-19-2024 18:00:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ** IN getRunMethod: testname=testComponentManaged -11-19-2024 18:00:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:33: SVR-TRACE: **runmethod=testComponentManaged -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testComponentManaged_setup -11-19-2024 18:00:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testComponentManaged_cleanup -11-19-2024 18:00:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:33: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@2a4ff83d -11-19-2024 18:00:33: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@48b5938e -11-19-2024 18:00:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:33: SVR: Got connection object from the TSDataSource. -11-19-2024 18:00:33: SVR: Checking for Connection Validity. -11-19-2024 18:00:33: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:33: SVR: Values inserted into table! -11-19-2024 18:00:33: SVR: Table has been dropped! -11-19-2024 18:00:33: SVR: Cleanup -11-19-2024 18:00:33: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:33: SVR: Test running in servlet vehicle passed -11-19-2024 18:00:33: Test status from a servlet: 0: -11-19-2024 18:00:33: Test: returning from running in a servlet vehicle -11-19-2024 18:00:33: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:33: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:33: Opened connection to http://localhost:8080/security_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:33: TRACE: got outputstream -11-19-2024 18:00:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:33: SVR-TRACE: In doPost -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnManagerAllocateConnectionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/security/securityClient1.class -11-19-2024 18:00:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ** IN getRunMethod: testname=testConnManagerAllocateConnection -11-19-2024 18:00:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:33: SVR-TRACE: **runmethod=testConnManagerAllocateConnection -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnManagerAllocateConnection_setup -11-19-2024 18:00:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnManagerAllocateConnection_cleanup -11-19-2024 18:00:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:33: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@61236ae4 -11-19-2024 18:00:33: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@51ad4b5 -11-19-2024 18:00:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:33: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:33: Test: returning from running in a servlet vehicle -11-19-2024 18:00:33: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:33: SVR: Got connection from the TSDataSource. -11-19-2024 18:00:33: SVR: Checking for Connection Validity. -11-19-2024 18:00:33: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:33: SVR: Exception inserting into table. -11-19-2024 18:00:33: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:33: SVR-ERROR: Exception at: -11-19-2024 18:00:33: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:277) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:273) - ... 38 more - -11-19-2024 18:00:33: SVR: Cleanup -11-19-2024 18:00:33: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:33: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.security.securityClient1, vehicle: servlet -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:33 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:33: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:33: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:33: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:33: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:33: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:33: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:33: Opened connection to http://localhost:8080/security_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:33: TRACE: got outputstream -11-19-2024 18:00:33: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:33: SVR-TRACE: In doPost -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:33: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:33: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:33: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testContainerManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:33: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/security/securityClient1.class -11-19-2024 18:00:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:33: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/security_servlet_vehicle/security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:33: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:33: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:33: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ** IN getRunMethod: testname=testContainerManaged -11-19-2024 18:00:33: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:33: SVR-TRACE: **runmethod=testContainerManaged -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:33: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:33: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testContainerManaged_setup -11-19-2024 18:00:33: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:33: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:33: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testContainerManaged_cleanup -11-19-2024 18:00:33: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:33: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.security.securityClient1 -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:33: SVR: Using: java:comp/env/eis/whitebox-notx-param -11-19-2024 18:00:33: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:33: Test: returning from running in a servlet vehicle -11-19-2024 18:00:33: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:33: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@5661d2c2 -11-19-2024 18:00:33: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@42cbf9df -11-19-2024 18:00:33: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:33: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:33: SVR: Got connection from the TSDataSource. -11-19-2024 18:00:33: SVR: Checking for Connection Validity. -11-19-2024 18:00:33: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:33: SVR: Exception inserting into table. -11-19-2024 18:00:33: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:33: SVR-ERROR: Exception at: -11-19-2024 18:00:33: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.security.securityClient1.testContainerManaged(securityClient1.java:143) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.security.securityClient1.testContainerManaged(securityClient1.java:139) - ... 38 more - -11-19-2024 18:00:33: SVR: Cleanup -11-19-2024 18:00:33: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:00:33: SVR: Test running in servlet vehicle failed -[ERROR] Tests run: 4, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 5.237 s <<< FAILURE! - in com.sun.ts.tests.connector.noTx.security.securityClient1ServletTest -[ERROR] com.sun.ts.tests.connector.noTx.security.securityClient1ServletTest.testConnManagerAllocateConnection Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.security.securityClient1ServletTest.testContainerManaged Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest -Nov 19, 2024 6:00:33 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:34 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:34 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:34 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:35 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:36 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:36 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:36 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:37 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:37 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:38 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:38: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:38: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:38: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:38: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:38: Opened connection to http://localhost:8080/workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:38: TRACE: got outputstream -11-19-2024 18:00:38: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:38: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testForUnsharedTimernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:38: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:38: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:38: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:38: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testname=testForUnsharedTimer -11-19-2024 18:00:38: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:38: SVR-TRACE: **runmethod=testForUnsharedTimer -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testForUnsharedTimer_setup -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:38: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testForUnsharedTimer_cleanup -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:38: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:38: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:38: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:38: SVR: Performing callback verification... -11-19-2024 18:00:38: SVR: Got RA log. -11-19-2024 18:00:38: SVR-TRACE: Got connection. -11-19-2024 18:00:38: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:38: SVR: Methods called correctly -11-19-2024 18:00:38: SVR: Performing end to end verification... -11-19-2024 18:00:38: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:38: SVR: Exception inserting into table. -11-19-2024 18:00:38: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: SVR-ERROR: Exception at: -11-19-2024 18:00:38: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: Test: returning from running in a jsp vehicle -11-19-2024 18:00:38: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:547) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:543) - ... 41 more - -11-19-2024 18:00:38: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:38: SVR: Cleanup -11-19-2024 18:00:38: SVR: Test running in jsp vehicle failed -Nov 19, 2024 6:00:38 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:38: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:38: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:38: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:38: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:38: Opened connection to http://localhost:8080/workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:38: TRACE: got outputstream -11-19-2024 18:00:38: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:38: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:38: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:38: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:38: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:38: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testname=testNestedWork -11-19-2024 18:00:38: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:38: SVR-TRACE: **runmethod=testNestedWork -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWork_setup -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:38: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWork_cleanup -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:38: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:38: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:38: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:38: SVR: Performing callback verification... -11-19-2024 18:00:38: SVR: Got RA log. -11-19-2024 18:00:38: SVR-TRACE: Got connection. -11-19-2024 18:00:38: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:38: SVR: Methods called correctly -11-19-2024 18:00:38: SVR: Performing end to end verification... -11-19-2024 18:00:38: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:38: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: SVR: Exception inserting into table. -11-19-2024 18:00:38: Test: returning from running in a jsp vehicle -11-19-2024 18:00:38: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:38: SVR-ERROR: Exception at: -11-19-2024 18:00:38: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:621) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:617) - ... 41 more - -11-19-2024 18:00:38: SVR: Cleanup -11-19-2024 18:00:38: SVR: Test running in jsp vehicle failed -Nov 19, 2024 6:00:38 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:38: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:38: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:38: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:38: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:38: Opened connection to http://localhost:8080/workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:38: TRACE: got outputstream -11-19-2024 18:00:38: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:38: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:38: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:38: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:38: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:38: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWork -11-19-2024 18:00:38: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:38: SVR-TRACE: **runmethod=testScheduleWork -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWork_setup -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:38: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWork_cleanup -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:38: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:38: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:38: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:38: SVR: Performing callback verification... -11-19-2024 18:00:38: SVR: Got RA log. -11-19-2024 18:00:38: SVR-TRACE: Got connection. -11-19-2024 18:00:38: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:38: SVR: Methods called correctly -11-19-2024 18:00:38: SVR: Performing end to end verification... -11-19-2024 18:00:38: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:38: SVR: Exception inserting into table. -11-19-2024 18:00:38: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: SVR-ERROR: Exception at: -11-19-2024 18:00:38: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:305) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:301) - ... 41 more - -11-19-2024 18:00:38: SVR: Cleanup -11-19-2024 18:00:38: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:38: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: Test: returning from running in a jsp vehicle -11-19-2024 18:00:38: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:38 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:38: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:38: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:38: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:38: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:38: Opened connection to http://localhost:8080/workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:38: TRACE: got outputstream -11-19-2024 18:00:38: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:38: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorkListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:38: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:38: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:38: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:38: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWorkListener -11-19-2024 18:00:38: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:38: SVR-TRACE: **runmethod=testScheduleWorkListener -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWorkListener_setup -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:38: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWorkListener_cleanup -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:38: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:38: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:38: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:38: SVR: Performing callback verification... -11-19-2024 18:00:38: SVR: Got RA log. -11-19-2024 18:00:38: SVR-TRACE: Got connection. -11-19-2024 18:00:38: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:38: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: SVR: Methods called correctly -11-19-2024 18:00:38: Test: returning from running in a jsp vehicle -11-19-2024 18:00:38: SVR: Performing end to end verification... -11-19-2024 18:00:38: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:38: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:38: SVR: Exception inserting into table. -11-19-2024 18:00:38: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: SVR-ERROR: Exception at: -11-19-2024 18:00:38: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:378) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:374) - ... 41 more - -11-19-2024 18:00:38: SVR: Cleanup -11-19-2024 18:00:38: SVR: Test running in jsp vehicle failed -Nov 19, 2024 6:00:38 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:38: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:38: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:38: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:38: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:38: Opened connection to http://localhost:8080/workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:38: TRACE: got outputstream -11-19-2024 18:00:38: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:38: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testUnknownWorkDurationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:38: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:38: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:38: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:38: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testname=testUnknownWorkDuration -11-19-2024 18:00:38: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:38: SVR-TRACE: **runmethod=testUnknownWorkDuration -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testUnknownWorkDuration_setup -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:38: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testUnknownWorkDuration_cleanup -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:38: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:38: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:38: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:38: SVR: Performing callback verification... -11-19-2024 18:00:38: SVR: Got RA log. -11-19-2024 18:00:38: SVR-TRACE: Got connection. -11-19-2024 18:00:38: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:38: SVR: Methods called correctly -11-19-2024 18:00:38: SVR: Performing end to end verification... -11-19-2024 18:00:38: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:38: SVR: Exception inserting into table. -11-19-2024 18:00:38: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: SVR-ERROR: Exception at: -11-19-2024 18:00:38: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:704) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:700) - ... 41 more - -11-19-2024 18:00:38: SVR: Cleanup -11-19-2024 18:00:38: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:38: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: Test: returning from running in a jsp vehicle -11-19-2024 18:00:38: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:38 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:38: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:38: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:38: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:38: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:38: Opened connection to http://localhost:8080/workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:38: TRACE: got outputstream -11-19-2024 18:00:38: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:38: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkCompletedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:38: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:38: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:38: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:38: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testname=testWorkCompletedException -11-19-2024 18:00:38: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:38: SVR-TRACE: **runmethod=testWorkCompletedException -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkCompletedException_setup -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:38: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkCompletedException_cleanup -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:38: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:38: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:38: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:38: SVR: Performing callback verification... -11-19-2024 18:00:38: SVR: Got RA log. -11-19-2024 18:00:38: SVR-TRACE: Got connection. -11-19-2024 18:00:38: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:38: SVR: Methods called correctly -11-19-2024 18:00:38: SVR: Performing end to end verification... -11-19-2024 18:00:38: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:38: SVR: Exception inserting into table. -11-19-2024 18:00:38: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: SVR-ERROR: Exception at: -11-19-2024 18:00:38: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:452) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:448) - ... 41 more - -11-19-2024 18:00:38: SVR: Cleanup -11-19-2024 18:00:38: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:38: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: Test: returning from running in a jsp vehicle -11-19-2024 18:00:38: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:38 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:38: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:38: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:38: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:38: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:38: Opened connection to http://localhost:8080/workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:38: TRACE: got outputstream -11-19-2024 18:00:38: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:38: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkListenerImplementationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:38: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:38: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:38: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:38: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testname=testWorkListenerImplementation -11-19-2024 18:00:38: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:38: SVR-TRACE: **runmethod=testWorkListenerImplementation -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkListenerImplementation_setup -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:38: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkListenerImplementation_cleanup -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:38: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:38: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:38: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:38: SVR: Performing callback verification... -11-19-2024 18:00:38: SVR: Got RA log. -11-19-2024 18:00:38: SVR-TRACE: Got connection. -11-19-2024 18:00:38: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:38: SVR: Methods called correctly -11-19-2024 18:00:38: SVR: Performing end to end verification... -11-19-2024 18:00:38: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:38: SVR: Exception inserting into table. -11-19-2024 18:00:38: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: SVR-ERROR: Exception at: -11-19-2024 18:00:38: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:232) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:228) - ... 41 more - -11-19-2024 18:00:38: SVR: Cleanup -11-19-2024 18:00:38: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:38: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: Test: returning from running in a jsp vehicle -11-19-2024 18:00:38: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:38 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:38 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:38: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:38: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:38: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:38: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:38: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:38: Opened connection to http://localhost:8080/workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:38: TRACE: got outputstream -11-19-2024 18:00:38: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:38: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:38: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkManagerImplementaionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:38: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:38: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:38: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_jsp_vehicle/workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:38: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:38: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:38: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ** IN getRunMethod: testname=testWorkManagerImplementaion -11-19-2024 18:00:38: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:38: SVR-TRACE: **runmethod=testWorkManagerImplementaion -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkManagerImplementaion_setup -11-19-2024 18:00:38: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:38: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkManagerImplementaion_cleanup -11-19-2024 18:00:38: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:38: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:38: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:38: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:38: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:38: SVR: Performing callback verification... -11-19-2024 18:00:38: SVR: Got RA log. -11-19-2024 18:00:38: SVR-TRACE: Got connection. -11-19-2024 18:00:38: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:38: SVR: Methods called correctly -11-19-2024 18:00:38: SVR: Performing end to end verification... -11-19-2024 18:00:38: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:38: SVR: Exception inserting into table. -11-19-2024 18:00:38: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:38: SVR-ERROR: Exception at: -11-19-2024 18:00:38: Test: returning from running in a jsp vehicle -11-19-2024 18:00:38: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:38: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:155) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:151) - ... 41 more - -11-19-2024 18:00:38: SVR: Cleanup -11-19-2024 18:00:38: SVR: Test running in jsp vehicle failed -[ERROR] Tests run: 8, Failures: 0, Errors: 8, Skipped: 0, Time elapsed: 5.202 s <<< FAILURE! - in com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest.testForUnsharedTimer Time elapsed: 0.144 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest.testNestedWork Time elapsed: 0.016 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest.testScheduleWork Time elapsed: 0.016 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest.testScheduleWorkListener Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest.testUnknownWorkDuration Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest.testWorkCompletedException Time elapsed: 0.018 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest.testWorkListenerImplementation Time elapsed: 0.027 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1JspTest.testWorkManagerImplementaion Time elapsed: 0.029 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest -Nov 19, 2024 6:00:39 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:39 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:39 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:39 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:40 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:40 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:40 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:41 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:41 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:41 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:42 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:42 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:42 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:43 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:43: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:43: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:43: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:43: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:43: Opened connection to http://localhost:8080/workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:43: TRACE: got outputstream -11-19-2024 18:00:43: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:43: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:00:43: SVR-TRACE: In doPost -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:43: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:43: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testForUnsharedTimernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:43: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:43: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:43: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testname=testForUnsharedTimer -11-19-2024 18:00:43: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:43: SVR-TRACE: **runmethod=testForUnsharedTimer -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testForUnsharedTimer_setup -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:43: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testForUnsharedTimer_cleanup -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:43: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:43: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:43: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:43: SVR: Performing callback verification... -11-19-2024 18:00:43: SVR: Got RA log. -11-19-2024 18:00:43: SVR-TRACE: Got connection. -11-19-2024 18:00:43: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:43: SVR: Methods called correctly -11-19-2024 18:00:43: SVR: Performing end to end verification... -11-19-2024 18:00:43: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:43: SVR: Exception inserting into table. -11-19-2024 18:00:43: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR-ERROR: Exception at: -11-19-2024 18:00:43: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:547) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:543) - ... 38 more - -11-19-2024 18:00:43: SVR: Cleanup -11-19-2024 18:00:43: SVR: Test running in servlet vehicle failed -11-19-2024 18:00:43: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: Test: returning from running in a servlet vehicle -11-19-2024 18:00:43: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:43 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:43: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:43: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:43: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:43: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:43: Opened connection to http://localhost:8080/workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:43: TRACE: got outputstream -11-19-2024 18:00:43: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:43: SVR-TRACE: In doPost -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:43: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:43: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:43: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:43: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:43: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testname=testNestedWork -11-19-2024 18:00:43: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:43: SVR-TRACE: **runmethod=testNestedWork -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWork_setup -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:43: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWork_cleanup -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:43: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:43: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:43: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:43: SVR: Performing callback verification... -11-19-2024 18:00:43: SVR: Got RA log. -11-19-2024 18:00:43: SVR-TRACE: Got connection. -11-19-2024 18:00:43: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: Test: returning from running in a servlet vehicle -11-19-2024 18:00:43: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:43: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:43: SVR: Methods called correctly -11-19-2024 18:00:43: SVR: Performing end to end verification... -11-19-2024 18:00:43: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:43: SVR: Exception inserting into table. -11-19-2024 18:00:43: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR-ERROR: Exception at: -11-19-2024 18:00:43: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:621) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:617) - ... 38 more - -11-19-2024 18:00:43: SVR: Cleanup -11-19-2024 18:00:43: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:43 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:43: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:43: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:43: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:43: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:43: Opened connection to http://localhost:8080/workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:43: TRACE: got outputstream -11-19-2024 18:00:43: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:43: SVR-TRACE: In doPost -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:43: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:43: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:43: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:43: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:43: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWork -11-19-2024 18:00:43: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:43: SVR-TRACE: **runmethod=testScheduleWork -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWork_setup -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:43: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWork_cleanup -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:43: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:43: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:43: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:43: SVR: Performing callback verification... -11-19-2024 18:00:43: SVR: Got RA log. -11-19-2024 18:00:43: SVR-TRACE: Got connection. -11-19-2024 18:00:43: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:43: SVR: Methods called correctly -11-19-2024 18:00:43: SVR: Performing end to end verification... -11-19-2024 18:00:43: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:43: SVR: Exception inserting into table. -11-19-2024 18:00:43: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR-ERROR: Exception at: -11-19-2024 18:00:43: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:305) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:301) - ... 38 more - -11-19-2024 18:00:43: SVR: Cleanup -11-19-2024 18:00:43: SVR: Test running in servlet vehicle failed -11-19-2024 18:00:43: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: Test: returning from running in a servlet vehicle -11-19-2024 18:00:43: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:43 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:43: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:43: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:43: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:43: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:43: Opened connection to http://localhost:8080/workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:43: TRACE: got outputstream -11-19-2024 18:00:43: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:43: SVR-TRACE: In doPost -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:43: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:43: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorkListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:43: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:43: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:43: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWorkListener -11-19-2024 18:00:43: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:43: SVR-TRACE: **runmethod=testScheduleWorkListener -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWorkListener_setup -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:43: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWorkListener_cleanup -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:43: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:43: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:43: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:43: SVR: Performing callback verification... -11-19-2024 18:00:43: SVR: Got RA log. -11-19-2024 18:00:43: SVR-TRACE: Got connection. -11-19-2024 18:00:43: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:43: SVR: Methods called correctly -11-19-2024 18:00:43: SVR: Performing end to end verification... -11-19-2024 18:00:43: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:43: SVR: Exception inserting into table. -11-19-2024 18:00:43: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR-ERROR: Exception at: -11-19-2024 18:00:43: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:378) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:374) - ... 38 more - -11-19-2024 18:00:43: SVR: Cleanup -11-19-2024 18:00:43: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR: Test running in servlet vehicle failed -11-19-2024 18:00:43: Test: returning from running in a servlet vehicle -11-19-2024 18:00:43: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:43 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:43: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:43: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:43: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:43: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:43: Opened connection to http://localhost:8080/workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:43: TRACE: got outputstream -11-19-2024 18:00:43: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:43: SVR-TRACE: In doPost -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:43: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:43: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testUnknownWorkDurationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:43: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:43: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:43: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testname=testUnknownWorkDuration -11-19-2024 18:00:43: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:43: SVR-TRACE: **runmethod=testUnknownWorkDuration -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testUnknownWorkDuration_setup -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:43: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testUnknownWorkDuration_cleanup -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:43: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:43: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:43: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:43: SVR: Performing callback verification... -11-19-2024 18:00:43: SVR: Got RA log. -11-19-2024 18:00:43: SVR-TRACE: Got connection. -11-19-2024 18:00:43: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:43: SVR: Methods called correctly -11-19-2024 18:00:43: SVR: Performing end to end verification... -11-19-2024 18:00:43: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:43: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR: Exception inserting into table. -11-19-2024 18:00:43: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR-ERROR: Exception at: -11-19-2024 18:00:43: Test: returning from running in a servlet vehicle -11-19-2024 18:00:43: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:43: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:704) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:700) - ... 38 more - -11-19-2024 18:00:43: SVR: Cleanup -11-19-2024 18:00:43: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:43 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:43: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:43: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:43: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:43: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:43: Opened connection to http://localhost:8080/workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:43: TRACE: got outputstream -11-19-2024 18:00:43: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:43: SVR-TRACE: In doPost -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:43: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:43: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkCompletedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:43: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:43: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:43: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testname=testWorkCompletedException -11-19-2024 18:00:43: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:43: SVR-TRACE: **runmethod=testWorkCompletedException -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkCompletedException_setup -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:43: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkCompletedException_cleanup -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:43: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:43: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:43: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:43: SVR: Performing callback verification... -11-19-2024 18:00:43: SVR: Got RA log. -11-19-2024 18:00:43: SVR-TRACE: Got connection. -11-19-2024 18:00:43: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:43: SVR: Methods called correctly -11-19-2024 18:00:43: SVR: Performing end to end verification... -11-19-2024 18:00:43: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:43: SVR: Exception inserting into table. -11-19-2024 18:00:43: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR-ERROR: Exception at: -11-19-2024 18:00:43: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:452) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:448) - ... 38 more - -11-19-2024 18:00:43: SVR: Cleanup -11-19-2024 18:00:43: SVR: Test running in servlet vehicle failed -11-19-2024 18:00:43: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: Test: returning from running in a servlet vehicle -11-19-2024 18:00:43: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:43 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:43: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:43: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:43: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:43: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:43: Opened connection to http://localhost:8080/workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:43: TRACE: got outputstream -11-19-2024 18:00:43: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:43: SVR-TRACE: In doPost -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:43: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:43: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkListenerImplementationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:43: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:43: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:43: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testname=testWorkListenerImplementation -11-19-2024 18:00:43: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:43: SVR-TRACE: **runmethod=testWorkListenerImplementation -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkListenerImplementation_setup -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:43: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkListenerImplementation_cleanup -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:43: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:43: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:43: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:43: SVR: Performing callback verification... -11-19-2024 18:00:43: SVR: Got RA log. -11-19-2024 18:00:43: SVR-TRACE: Got connection. -11-19-2024 18:00:43: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:43: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR: Methods called correctly -11-19-2024 18:00:43: SVR: Performing end to end verification... -11-19-2024 18:00:43: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:43: Test: returning from running in a servlet vehicle -11-19-2024 18:00:43: SVR: Exception inserting into table. -11-19-2024 18:00:43: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:43: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR-ERROR: Exception at: -11-19-2024 18:00:43: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:232) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:228) - ... 38 more - -11-19-2024 18:00:43: SVR: Cleanup -11-19-2024 18:00:43: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:43 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:43 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:43: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:43: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:43: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:43: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:43: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:43: Opened connection to http://localhost:8080/workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:43: TRACE: got outputstream -11-19-2024 18:00:43: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:43: SVR-TRACE: In doPost -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:43: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:43: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:43: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkManagerImplementaionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:43: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/workmgt_servlet_vehicle/workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:43: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:43: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:43: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ** IN getRunMethod: testname=testWorkManagerImplementaion -11-19-2024 18:00:43: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:43: SVR-TRACE: **runmethod=testWorkManagerImplementaion -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkManagerImplementaion_setup -11-19-2024 18:00:43: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:43: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkManagerImplementaion_cleanup -11-19-2024 18:00:43: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:43: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1 -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:43: SVR: Using: java:comp/env/eis/whitebox-notx -11-19-2024 18:00:43: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:43: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:43: SVR: Performing callback verification... -11-19-2024 18:00:43: SVR: Got RA log. -11-19-2024 18:00:43: SVR-TRACE: Got connection. -11-19-2024 18:00:43: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:00:43: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR: Methods called correctly -11-19-2024 18:00:43: SVR: Performing end to end verification... -11-19-2024 18:00:43: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:43: Test: returning from running in a servlet vehicle -11-19-2024 18:00:43: SVR: Exception inserting into table. -11-19-2024 18:00:43: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:43: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:43: SVR-ERROR: Exception at: -11-19-2024 18:00:43: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:155) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:151) - ... 38 more - -11-19-2024 18:00:43: SVR: Cleanup -11-19-2024 18:00:43: SVR: Test running in servlet vehicle failed -[ERROR] Tests run: 8, Failures: 0, Errors: 8, Skipped: 0, Time elapsed: 4.912 s <<< FAILURE! - in com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest.testForUnsharedTimer Time elapsed: 0.035 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest.testNestedWork Time elapsed: 0.016 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest.testScheduleWork Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest.testScheduleWorkListener Time elapsed: 0.011 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest.testUnknownWorkDuration Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest.testWorkCompletedException Time elapsed: 0.015 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest.testWorkListenerImplementation Time elapsed: 0.018 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1ServletTest.testWorkManagerImplementaion Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.permissiondd.ClientJspTest -Nov 19, 2024 6:00:43 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:44 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:44 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:44 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:44 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:45 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:45 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:45 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:46 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:46 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:46 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:47 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:47 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: jsp -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:48: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:48: Opened connection to http://localhost:8080/permissiondd_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:48: TRACE: got outputstream -11-19-2024 18:00:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateCustomPermnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testname=testValidateCustomPerm -11-19-2024 18:00:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:48: SVR-TRACE: **runmethod=testValidateCustomPerm -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateCustomPerm_setup -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateCustomPerm_cleanup -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:48: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:48: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 46 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 47 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 56 more - -11-19-2024 18:00:48: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:48: SVR: Exception caught on creating connection. -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateCustomPerm(Client.java:120) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateCustomPerm(Client.java:114) - ... 41 more - -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:48: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: Test: returning from running in a jsp vehicle -11-19-2024 18:00:48: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: jsp -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:48: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:48: Opened connection to http://localhost:8080/permissiondd_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:48: TRACE: got outputstream -11-19-2024 18:00:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateLocalPermsInvalidNamenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testname=testValidateLocalPermsInvalidName -11-19-2024 18:00:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:48: SVR-TRACE: **runmethod=testValidateLocalPermsInvalidName -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateLocalPermsInvalidName_setup -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateLocalPermsInvalidName_cleanup -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:48: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:48: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 46 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 47 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 56 more - -11-19-2024 18:00:48: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:48: SVR: Exception caught on creating connection. -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateLocalPermsInvalidName(Client.java:358) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateLocalPermsInvalidName(Client.java:352) - ... 41 more - -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:48: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: Test: returning from running in a jsp vehicle -11-19-2024 18:00:48: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: jsp -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:48: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:48: Opened connection to http://localhost:8080/permissiondd_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:48: TRACE: got outputstream -11-19-2024 18:00:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateMissingPermFailsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testname=testValidateMissingPermFails -11-19-2024 18:00:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:48: SVR-TRACE: **runmethod=testValidateMissingPermFails -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateMissingPermFails_setup -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateMissingPermFails_cleanup -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:48: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:48: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 46 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 47 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 56 more - -11-19-2024 18:00:48: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:48: SVR: Exception caught on creating connection. -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateMissingPermFails(Client.java:240) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateMissingPermFails(Client.java:234) - ... 41 more - -11-19-2024 18:00:48: Test: returning from running in a jsp vehicle -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:48: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:48: SVR: Test running in jsp vehicle failed -Nov 19, 2024 6:00:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: jsp -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:48: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:48: Opened connection to http://localhost:8080/permissiondd_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:48: TRACE: got outputstream -11-19-2024 18:00:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateRequiredPermSetnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: Test: returning from running in a jsp vehicle -11-19-2024 18:00:48: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testname=testValidateRequiredPermSet -11-19-2024 18:00:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:48: SVR-TRACE: **runmethod=testValidateRequiredPermSet -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateRequiredPermSet_setup -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateRequiredPermSet_cleanup -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:48: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:48: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 46 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 47 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 56 more - -11-19-2024 18:00:48: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:48: SVR: Exception caught on creating connection. -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateRequiredPermSet(Client.java:182) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateRequiredPermSet(Client.java:176) - ... 41 more - -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:48: SVR: Test running in jsp vehicle failed -Nov 19, 2024 6:00:48 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: jsp -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:48 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:48: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:48: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:48: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:48: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:48: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:48: Opened connection to http://localhost:8080/permissiondd_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:48: TRACE: got outputstream -11-19-2024 18:00:48: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:48: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:48: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateRestrictedLocalPermnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:48: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:48: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:48: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_jsp_vehicle/permissiondd_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:48: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:48: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:48: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ** IN getRunMethod: testname=testValidateRestrictedLocalPerm -11-19-2024 18:00:48: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:48: SVR-TRACE: **runmethod=testValidateRestrictedLocalPerm -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateRestrictedLocalPerm_setup -11-19-2024 18:00:48: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:48: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateRestrictedLocalPerm_cleanup -11-19-2024 18:00:48: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:48: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:48: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:48: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 46 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 47 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 56 more - -11-19-2024 18:00:48: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:48: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:48: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:48: SVR: Exception caught on creating connection. -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateRestrictedLocalPerm(Client.java:297) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateRestrictedLocalPerm(Client.java:291) - ... 41 more - -11-19-2024 18:00:48: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:48: SVR-ERROR: Exception at: -11-19-2024 18:00:48: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:48: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:48: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:48: Test: returning from running in a jsp vehicle -11-19-2024 18:00:48: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 5, Failures: 0, Errors: 5, Skipped: 0, Time elapsed: 5.116 s <<< FAILURE! - in com.sun.ts.tests.connector.permissiondd.ClientJspTest -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientJspTest.testValidateCustomPerm Time elapsed: 0.192 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientJspTest.testValidateLocalPermsInvalidName Time elapsed: 0.015 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientJspTest.testValidateMissingPermFails Time elapsed: 0.016 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientJspTest.testValidateRequiredPermSet Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientJspTest.testValidateRestrictedLocalPerm Time elapsed: 0.021 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[INFO] Running com.sun.ts.tests.connector.permissiondd.ClientServletTest -Nov 19, 2024 6:00:49 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:49 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:50 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:50 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:54 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: servlet -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:54: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:54: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:54: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:54: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:54: Opened connection to http://localhost:8080/permissiondd_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:54: TRACE: got outputstream -11-19-2024 18:00:54: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:54: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:00:54: SVR-TRACE: In doPost -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:54: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:54: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateCustomPermnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:54: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:54: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:54: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testname=testValidateCustomPerm -11-19-2024 18:00:54: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:54: SVR-TRACE: **runmethod=testValidateCustomPerm -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateCustomPerm_setup -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:54: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateCustomPerm_cleanup -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:54: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:54: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:54: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 43 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 44 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 53 more - -11-19-2024 18:00:54: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:54: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:54: SVR: Exception caught on creating connection. -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateCustomPerm(Client.java:120) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateCustomPerm(Client.java:114) - ... 38 more - -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:54: SVR: Test running in servlet vehicle failed -11-19-2024 18:00:54: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: Test: returning from running in a servlet vehicle -11-19-2024 18:00:54: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:54 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: servlet -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:54: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:54: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:54: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:54: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:54: Opened connection to http://localhost:8080/permissiondd_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:54: TRACE: got outputstream -11-19-2024 18:00:54: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:54: SVR-TRACE: In doPost -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:54: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:54: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateLocalPermsInvalidNamenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:54: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:54: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:54: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testname=testValidateLocalPermsInvalidName -11-19-2024 18:00:54: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:54: SVR-TRACE: **runmethod=testValidateLocalPermsInvalidName -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateLocalPermsInvalidName_setup -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:54: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateLocalPermsInvalidName_cleanup -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:54: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:54: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:54: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 43 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 44 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 53 more - -11-19-2024 18:00:54: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:54: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:54: SVR: Exception caught on creating connection. -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateLocalPermsInvalidName(Client.java:358) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateLocalPermsInvalidName(Client.java:352) - ... 38 more - -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:54: SVR: Test running in servlet vehicle failed -11-19-2024 18:00:54: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: Test: returning from running in a servlet vehicle -11-19-2024 18:00:54: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:54 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: servlet -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:54: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:54: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:54: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:54: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:54: Opened connection to http://localhost:8080/permissiondd_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:54: TRACE: got outputstream -11-19-2024 18:00:54: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:54: SVR-TRACE: In doPost -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:54: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:54: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateMissingPermFailsnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:54: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:54: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:54: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testname=testValidateMissingPermFails -11-19-2024 18:00:54: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:54: SVR-TRACE: **runmethod=testValidateMissingPermFails -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateMissingPermFails_setup -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:54: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateMissingPermFails_cleanup -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:54: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:54: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:54: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 43 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 44 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 53 more - -11-19-2024 18:00:54: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:54: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:54: SVR: Exception caught on creating connection. -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateMissingPermFails(Client.java:240) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateMissingPermFails(Client.java:234) - ... 38 more - -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: Test: returning from running in a servlet vehicle -11-19-2024 18:00:54: TRACE: SLEPT FOR: 0 -11-19-2024 18:00:54: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:54: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:00:54 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: servlet -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:54: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:54: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:54: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:54: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:54: Opened connection to http://localhost:8080/permissiondd_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:54: TRACE: got outputstream -11-19-2024 18:00:54: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:54: SVR-TRACE: In doPost -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:54: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:54: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateRequiredPermSetnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:54: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:54: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:54: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testname=testValidateRequiredPermSet -11-19-2024 18:00:54: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:54: SVR-TRACE: **runmethod=testValidateRequiredPermSet -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateRequiredPermSet_setup -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:54: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateRequiredPermSet_cleanup -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:54: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:54: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:54: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 43 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 44 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 53 more - -11-19-2024 18:00:54: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:54: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:54: SVR: Exception caught on creating connection. -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateRequiredPermSet(Client.java:182) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateRequiredPermSet(Client.java:176) - ... 38 more - -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:54: Test: returning from running in a servlet vehicle -11-19-2024 18:00:54: SVR: Test running in servlet vehicle failed -11-19-2024 18:00:54: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:54 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.permissiondd.Client, vehicle: servlet -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:54 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.permissiondd.Client, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=permissiondd_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:54: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:54: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:54: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:54: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:54: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:00:54: Opened connection to http://localhost:8080/permissiondd_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:00:54: TRACE: got outputstream -11-19-2024 18:00:54: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:00:54: SVR-TRACE: In doPost -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:00:54: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:00:54: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:00:54: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testValidateRestrictedLocalPermnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=permissiondd_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.permissiondd.ClientnullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:54: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/permissiondd/Client.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/permissiondd_servlet_vehicle/permissiondd_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:54: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:54: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:54: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ** IN getRunMethod: testname=testValidateRestrictedLocalPerm -11-19-2024 18:00:54: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:54: SVR-TRACE: **runmethod=testValidateRestrictedLocalPerm -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testValidateRestrictedLocalPerm_setup -11-19-2024 18:00:54: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:54: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testValidateRestrictedLocalPerm_cleanup -11-19-2024 18:00:54: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:54: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.permissiondd.Client -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:54: SVR: Using: java:comp/env/eis/whitebox-permissiondd -11-19-2024 18:00:54: SVR-ERROR: javax.naming.NamingException: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.ts.lib.util.TSNamingContext.lookup(TSNamingContext.java:70) - at com.sun.ts.tests.connector.permissiondd.Client.setup(Client.java:81) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:575) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: javax.naming.NameNotFoundException: No object bound for java:comp/env/eis/whitebox-permissiondd - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:135) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:818) - ... 43 more - Suppressed: javax.naming.NamingException: Lookup failed for eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming, com.sun.enterprise.naming.logicalName=java:comp/env/eis/whitebox-permissiondd}] [Root exception is javax.naming.NameNotFoundException: whitebox-permissiondd not found] - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:836) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:257) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at java.naming/javax.naming.InitialContext.lookup(InitialContext.java:409) - at com.sun.enterprise.naming.util.JndiNamingObjectFactory.create(JndiNamingObjectFactory.java:74) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:603) - at com.sun.enterprise.naming.impl.GlassfishNamingManagerImpl.lookup(GlassfishNamingManagerImpl.java:573) - at com.sun.enterprise.naming.impl.JavaURLContext.lambda$lookup$0(JavaURLContext.java:153) - at com.sun.enterprise.naming.impl.JavaURLContext.lookupOrCollectException(JavaURLContext.java:550) - at com.sun.enterprise.naming.impl.JavaURLContext.lookup(JavaURLContext.java:153) - ... 44 more - Caused by: javax.naming.NameNotFoundException: whitebox-permissiondd not found - at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:234) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:202) - at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:206) - at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:37) - at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:90) - at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:825) - ... 53 more - -11-19-2024 18:00:54: SVR: Exception during JNDI lookup: Lookup failed for java:comp/env/eis/whitebox-permissiondd in SerialContext[myEnv={java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}] -11-19-2024 18:00:54: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:54: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:54: SVR: Exception caught on creating connection. -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateRestrictedLocalPerm(Client.java:297) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.testValidateRestrictedLocalPerm(Client.java:291) - ... 38 more - -11-19-2024 18:00:54: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null -11-19-2024 18:00:54: SVR-ERROR: Exception at: -11-19-2024 18:00:54: SVR-ERROR: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.clearLog()" because "this.ds1" is null - at com.sun.ts.tests.connector.permissiondd.Client.cleanup(Client.java:386) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:629) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) - -11-19-2024 18:00:54: SVR: Test running in servlet vehicle failed -11-19-2024 18:00:54: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null -11-19-2024 18:00:54: Test: returning from running in a servlet vehicle -11-19-2024 18:00:54: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 5, Failures: 0, Errors: 5, Skipped: 0, Time elapsed: 5.286 s <<< FAILURE! - in com.sun.ts.tests.connector.permissiondd.ClientServletTest -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientServletTest.testValidateCustomPerm Time elapsed: 0.023 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientServletTest.testValidateLocalPermsInvalidName Time elapsed: 0.02 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientServletTest.testValidateMissingPermFails Time elapsed: 0.015 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientServletTest.testValidateRequiredPermSet Time elapsed: 0.016 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[ERROR] com.sun.ts.tests.connector.permissiondd.ClientServletTest.testValidateRestrictedLocalPerm Time elapsed: 0.021 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSDataSource.setLogFlag(boolean)" because "this.ds1" is null - -[INFO] Running com.sun.ts.tests.connector.xa.connection.connectionClient1JspTest -Nov 19, 2024 6:00:54 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:54 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:55 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:56 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:00:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:00:58 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:00:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_connection_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:59: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:59: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:59: Opened connection to http://localhost:8080/xa_connection_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:59: TRACE: got outputstream -11-19-2024 18:00:59: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:59: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:59: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:59: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:59: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testGetConnection1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_connection_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:59: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:59: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:59: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_jsp_vehicle/xa_connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/connection/connectionClient1.class -11-19-2024 18:00:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_jsp_vehicle/xa_connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_jsp_vehicle/xa_connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:00:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:00:59: SVR-TRACE: ** IN getRunMethod: testname=testGetConnection1 -11-19-2024 18:00:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:59: SVR-TRACE: **runmethod=testGetConnection1 -11-19-2024 18:00:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testGetConnection1_setup -11-19-2024 18:00:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:00:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testGetConnection1_cleanup -11-19-2024 18:00:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:00:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:59: SVR: Using: cts1 -11-19-2024 18:00:59: SVR: Using: cts1 -11-19-2024 18:00:59: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:00:59: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:00:59: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@38120a13 -11-19-2024 18:00:59: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@238123a4 -11-19-2024 18:00:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:59: SVR: Got Connection Object from the DataSource. -11-19-2024 18:00:59: SVR: Checking for Connection Validity. -11-19-2024 18:00:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:59: SVR: Exception inserting into table. -11-19-2024 18:00:59: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:59: SVR-ERROR: Exception at: -11-19-2024 18:00:59: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.connection.connectionClient1.testGetConnection1(connectionClient1.java:143) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.connection.connectionClient1.testGetConnection1(connectionClient1.java:139) - ... 41 more - -11-19-2024 18:00:59: SVR: Test running in jsp vehicle failed -11-19-2024 18:00:59: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:00:59: Test: returning from running in a jsp vehicle -11-19-2024 18:00:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:00:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.connection.connectionClient1, vehicle: jsp -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:00:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_connection_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:00:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:00:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:00:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:00:59: TRACE: in ServiceEETest.run() method -11-19-2024 18:00:59: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:00:59: Opened connection to http://localhost:8080/xa_connection_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:00:59: TRACE: got outputstream -11-19-2024 18:00:59: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:00:59: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:00:59: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:00:59: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:00:59: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:00:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testgetConnectionWithParameter1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_connection_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:00:59: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:00:59: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:00:59: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:00:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_jsp_vehicle/xa_connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/connection/connectionClient1.class -11-19-2024 18:00:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_jsp_vehicle/xa_connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_jsp_vehicle/xa_connection_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:00:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:00:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:00:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:00:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:00:59: SVR-TRACE: ** IN getRunMethod: testname=testgetConnectionWithParameter1 -11-19-2024 18:00:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:00:59: SVR-TRACE: **runmethod=testgetConnectionWithParameter1 -11-19-2024 18:00:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:00:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:00:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testgetConnectionWithParameter1_setup -11-19-2024 18:00:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:00:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:00:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:00:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testgetConnectionWithParameter1_cleanup -11-19-2024 18:00:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:00:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:00:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:00:59: SVR: Using: cts1 -11-19-2024 18:00:59: SVR: Using: cts1 -11-19-2024 18:00:59: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:00:59: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:00:59: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4b3800c6 -11-19-2024 18:00:59: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@4ed49df4 -11-19-2024 18:00:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:00:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:00:59: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:00:59: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:00:59: SVR: Using: cts1 -11-19-2024 18:00:59: SVR: Using: cts1 -11-19-2024 18:00:59: SVR: Got connection object from the DataSource. -11-19-2024 18:00:59: SVR: Checking for Connection Validity. -11-19-2024 18:00:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:00:59: SVR: Values inserted into table! -11-19-2024 18:00:59: SVR: Table has been dropped! -11-19-2024 18:00:59: Test status from a jsp: 0: -11-19-2024 18:00:59: SVR: Connection Object is Valid. -11-19-2024 18:00:59: Test: returning from running in a jsp vehicle -11-19-2024 18:00:59: SVR: Test running in jsp vehicle passed -11-19-2024 18:00:59: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 5.647 s <<< FAILURE! - in com.sun.ts.tests.connector.xa.connection.connectionClient1JspTest -[ERROR] com.sun.ts.tests.connector.xa.connection.connectionClient1JspTest.testGetConnection1 Time elapsed: 0.211 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.xa.connection.connectionClient1ServletTest -Nov 19, 2024 6:00:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:02 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:02 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:04 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:05 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_connection_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:05: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:05: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:05: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:05: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:05: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:05: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:05: Opened connection to http://localhost:8080/xa_connection_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:05: TRACE: got outputstream -11-19-2024 18:01:05: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:05: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:01:05: SVR-TRACE: In doPost -11-19-2024 18:01:05: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:05: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:05: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:05: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:05: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:05: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testGetConnection1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_connection_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:05: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_servlet_vehicle/xa_connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/connection/connectionClient1.class -11-19-2024 18:01:05: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_servlet_vehicle/xa_connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:05: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_servlet_vehicle/xa_connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:05: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:05: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:05: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:01:05: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:01:05: SVR-TRACE: ** IN getRunMethod: testname=testGetConnection1 -11-19-2024 18:01:05: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:05: SVR-TRACE: **runmethod=testGetConnection1 -11-19-2024 18:01:05: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:05: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:05: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testGetConnection1_setup -11-19-2024 18:01:05: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:05: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:01:05: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:05: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testGetConnection1_cleanup -11-19-2024 18:01:05: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:05: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:01:05: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:05: SVR: Using: cts1 -11-19-2024 18:01:05: SVR: Using: cts1 -11-19-2024 18:01:05: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:05: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:05: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@282ff432 -11-19-2024 18:01:05: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@21450b47 -11-19-2024 18:01:05: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:05: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:05: SVR: Got Connection Object from the DataSource. -11-19-2024 18:01:05: SVR: Checking for Connection Validity. -11-19-2024 18:01:05: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:05: SVR: Exception inserting into table. -11-19-2024 18:01:05: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:05: SVR-ERROR: Exception at: -11-19-2024 18:01:05: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.connection.connectionClient1.testGetConnection1(connectionClient1.java:143) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.connection.connectionClient1.testGetConnection1(connectionClient1.java:139) - ... 38 more - -11-19-2024 18:01:05: SVR: Test running in servlet vehicle failed -11-19-2024 18:01:05: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:05: Test: returning from running in a servlet vehicle -11-19-2024 18:01:05: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:05 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.connection.connectionClient1, vehicle: servlet -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:05 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.connection.connectionClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_connection_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:05: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:05: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:05: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:05: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:05: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:05: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:05: Opened connection to http://localhost:8080/xa_connection_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:05: TRACE: got outputstream -11-19-2024 18:01:05: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:05: SVR-TRACE: In doPost -11-19-2024 18:01:05: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:05: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:05: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:05: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:05: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:05: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testgetConnectionWithParameter1nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_connection_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.connection.connectionClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:05: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_servlet_vehicle/xa_connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/connection/connectionClient1.class -11-19-2024 18:01:05: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_servlet_vehicle/xa_connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:05: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_connection_servlet_vehicle/xa_connection_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:05: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:05: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:05: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:01:05: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:01:05: SVR-TRACE: ** IN getRunMethod: testname=testgetConnectionWithParameter1 -11-19-2024 18:01:05: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:05: SVR-TRACE: **runmethod=testgetConnectionWithParameter1 -11-19-2024 18:01:05: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:05: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:05: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testgetConnectionWithParameter1_setup -11-19-2024 18:01:05: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:05: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:01:05: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:05: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testgetConnectionWithParameter1_cleanup -11-19-2024 18:01:05: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:05: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.connection.connectionClient1 -11-19-2024 18:01:05: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:05: SVR: Using: cts1 -11-19-2024 18:01:05: SVR: Using: cts1 -11-19-2024 18:01:05: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:05: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:05: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@40f6040f -11-19-2024 18:01:05: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@49a07afa -11-19-2024 18:01:05: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:05: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:05: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:05: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:05: SVR: Using: cts1 -11-19-2024 18:01:05: SVR: Using: cts1 -11-19-2024 18:01:05: SVR: Got connection object from the DataSource. -11-19-2024 18:01:05: SVR: Checking for Connection Validity. -11-19-2024 18:01:05: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:05: SVR: Values inserted into table! -11-19-2024 18:01:05: SVR: Table has been dropped! -11-19-2024 18:01:05: SVR: Connection Object is Valid. -11-19-2024 18:01:05: SVR: Test running in servlet vehicle passed -11-19-2024 18:01:05: Test status from a servlet: 0: -11-19-2024 18:01:05: Test: returning from running in a servlet vehicle -11-19-2024 18:01:05: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 5.331 s <<< FAILURE! - in com.sun.ts.tests.connector.xa.connection.connectionClient1ServletTest -[ERROR] com.sun.ts.tests.connector.xa.connection.connectionClient1ServletTest.testGetConnection1 Time elapsed: 0.022 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.xa.event.eventClient1JspTest -Nov 19, 2024 6:01:05 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:05 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:09 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:10 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.event.eventClient1, vehicle: jsp -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:10 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.event.eventClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_event_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:10: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:10: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:10: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:10: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:10: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:10: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:10: Opened connection to http://localhost:8080/xa_event_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:10: TRACE: got outputstream -11-19-2024 18:01:10: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:10: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:10: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:10: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:10: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:10: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnectionEventListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_event_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.event.eventClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:10: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:10: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:10: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:10: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_event_jsp_vehicle/xa_event_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/event/eventClient1.class -11-19-2024 18:01:10: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_event_jsp_vehicle/xa_event_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:10: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_event_jsp_vehicle/xa_event_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:10: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:10: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:10: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.event.eventClient1 -11-19-2024 18:01:10: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.event.eventClient1 -11-19-2024 18:01:10: SVR-TRACE: ** IN getRunMethod: testname=testConnectionEventListener -11-19-2024 18:01:10: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:10: SVR-TRACE: **runmethod=testConnectionEventListener -11-19-2024 18:01:10: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:10: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:10: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnectionEventListener_setup -11-19-2024 18:01:10: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:10: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.event.eventClient1 -11-19-2024 18:01:10: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:10: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnectionEventListener_cleanup -11-19-2024 18:01:10: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:10: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.event.eventClient1 -11-19-2024 18:01:10: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:10: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:10: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:10: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:10: SVR: Got connection. -11-19-2024 18:01:10: Test status from a jsp: 0: -11-19-2024 18:01:10: Test: returning from running in a jsp vehicle -11-19-2024 18:01:10: TRACE: SLEPT FOR: 0 -11-19-2024 18:01:10: SVR-TRACE: [TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.setLogWriter:out:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSeis.getConnection::, TSConnectionImpl.getConnection::, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSeis.getConnection::, TSConnectionImpl.getConnection::, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:] -11-19-2024 18:01:10: SVR: CONNECTION_CLOSED called correctly. -11-19-2024 18:01:10: SVR: Cleanup -11-19-2024 18:01:10: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:10: SVR: Test running in jsp vehicle passed -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.285 s - in com.sun.ts.tests.connector.xa.event.eventClient1JspTest -[INFO] Running com.sun.ts.tests.connector.xa.event.eventClient1ServletTest -Nov 19, 2024 6:01:10 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:10 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:11 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:12 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:13 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:13 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:13 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:14 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.event.eventClient1, vehicle: servlet -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:15 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.event.eventClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_event_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:15: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:15: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:15: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:15: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:15: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:15: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:15: Opened connection to http://localhost:8080/xa_event_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:15: TRACE: got outputstream -11-19-2024 18:01:15: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:15: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:01:15: SVR-TRACE: In doPost -11-19-2024 18:01:15: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:15: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:15: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:15: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:15: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:15: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnectionEventListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_event_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.event.eventClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:15: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_event_servlet_vehicle/xa_event_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/event/eventClient1.class -11-19-2024 18:01:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_event_servlet_vehicle/xa_event_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:15: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_event_servlet_vehicle/xa_event_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:15: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:15: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:15: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.event.eventClient1 -11-19-2024 18:01:15: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.event.eventClient1 -11-19-2024 18:01:15: SVR-TRACE: ** IN getRunMethod: testname=testConnectionEventListener -11-19-2024 18:01:15: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:15: SVR-TRACE: **runmethod=testConnectionEventListener -11-19-2024 18:01:15: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:15: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:15: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnectionEventListener_setup -11-19-2024 18:01:15: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:15: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.event.eventClient1 -11-19-2024 18:01:15: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:15: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnectionEventListener_cleanup -11-19-2024 18:01:15: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:15: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.event.eventClient1 -11-19-2024 18:01:15: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:15: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:15: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:15: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:15: SVR: Got connection. -11-19-2024 18:01:15: Test status from a servlet: 0: -11-19-2024 18:01:15: Test: returning from running in a servlet vehicle -11-19-2024 18:01:15: TRACE: SLEPT FOR: 0 -11-19-2024 18:01:15: SVR-TRACE: [TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.setLogWriter:out:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, PMDManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, PMDManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MAManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.setLogWriter:out:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.createManagedConnection:subject|info:TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.getLocalTransaction::LocalTransactionImpl, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, MDCompleteMCF.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, LocalTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, LocalTxManagedConnectionFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnectionFactory.createManagedConnection::TSManagedConnection, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, NoTxManagedConnectionFactory.createConnectionFactory:cxManager:TSEISDataSource, NoTxManagedConnecitonFactory.matchManagedConnection:connectionSet|subject|info:TSEISDataSource, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSeis.getConnection:usr,passwd:, TSConnectionImpl.getConnection::, TSConnectionEventListener.constructor:mcon:, TSManagedConnection.addConnectionEventListener:listener:, TSConnectionEventListener.addConnectorListener:connectionEventListener:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSeis.getConnection::, TSConnectionImpl.getConnection::, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSConnectionImpl.insert::, TSConnectionImpl.dropTable::, TSeis.dropTable::, Table Dropped ::, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSeis.getConnection::, TSConnectionImpl.getConnection::, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.getManagedConnectionFactory::ManagedConnectionFactory, TSManagedConnection.addTSConnection:jdbcCon:, TSManagedConnection.getXAResource::xacon.getXAResource, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:, TSManagedConnection.removeTSConnection:jdbcCon:, TSManagedConnection.sendEvent:eventType|ex|connectionHandle:, TSConnectionEventListener.sendEvent:CONNECTION_CLOSED:] -11-19-2024 18:01:15: SVR: CONNECTION_CLOSED called correctly. -11-19-2024 18:01:15: SVR: Cleanup -11-19-2024 18:01:15: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:15: SVR: Test running in servlet vehicle passed -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.892 s - in com.sun.ts.tests.connector.xa.event.eventClient1ServletTest -[INFO] Running com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1JspTest -Nov 19, 2024 6:01:15 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:15 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:16 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:17 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:18 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:18 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:18 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:19 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:20: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:20: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:20: Opened connection to http://localhost:8080/xa_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:20: TRACE: got outputstream -11-19-2024 18:01:20: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:20: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA -11-19-2024 18:01:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:20: SVR-TRACE: **runmethod=testAssociationMCFandRA -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA_setup -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA_cleanup -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:20: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:20: SVR: Performing callback verification... -11-19-2024 18:01:20: SVR: Got RA log. -11-19-2024 18:01:20: SVR-TRACE: Got connection. -11-19-2024 18:01:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:20: SVR: Methods called correctly -11-19-2024 18:01:20: SVR: Performing end to end verification... -11-19-2024 18:01:20: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:20: SVR: Exception inserting into table. -11-19-2024 18:01:20: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: SVR-ERROR: Exception at: -11-19-2024 18:01:20: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:154) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:150) - ... 41 more - -11-19-2024 18:01:20: SVR: Cleanup -11-19-2024 18:01:20: SVR: Test running in jsp vehicle failed -11-19-2024 18:01:20: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: Test: returning from running in a jsp vehicle -11-19-2024 18:01:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:20: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:20: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:20: Opened connection to http://localhost:8080/xa_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:20: TRACE: got outputstream -11-19-2024 18:01:20: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRA2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:20: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA2 -11-19-2024 18:01:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:20: SVR-TRACE: **runmethod=testAssociationMCFandRA2 -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA2_setup -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA2_cleanup -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:20: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:20: SVR: Performing callback verification... -11-19-2024 18:01:20: SVR: Got RA log. -11-19-2024 18:01:20: SVR-TRACE: Got connection. -11-19-2024 18:01:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:20: SVR: testAssociationMCFandRA2 passed: setResourceAdapter not called twice. -11-19-2024 18:01:20: SVR: Cleanup -11-19-2024 18:01:20: SVR: Test running in jsp vehicle passed -11-19-2024 18:01:20: Test status from a jsp: 0: -11-19-2024 18:01:20: Test: returning from running in a jsp vehicle -11-19-2024 18:01:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:20: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:20: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:20: Opened connection to http://localhost:8080/xa_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:20: TRACE: got outputstream -11-19-2024 18:01:20: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testBootstrapforNullnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:20: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testname=testBootstrapforNull -11-19-2024 18:01:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:20: SVR-TRACE: **runmethod=testBootstrapforNull -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testBootstrapforNull_setup -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testBootstrapforNull_cleanup -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:20: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:20: SVR: Performing callback verification... -11-19-2024 18:01:20: SVR: Got RA log. -11-19-2024 18:01:20: SVR-TRACE: Got connection. -11-19-2024 18:01:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:20: SVR: Methods called correctly -11-19-2024 18:01:20: SVR: Performing end to end verification... -11-19-2024 18:01:20: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:20: SVR: Exception inserting into table. -11-19-2024 18:01:20: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: SVR-ERROR: Exception at: -11-19-2024 18:01:20: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:280) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:276) - ... 41 more - -11-19-2024 18:01:20: SVR: Cleanup -11-19-2024 18:01:20: SVR: Test running in jsp vehicle failed -11-19-2024 18:01:20: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: Test: returning from running in a jsp vehicle -11-19-2024 18:01:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:20: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:20: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:20: Opened connection to http://localhost:8080/xa_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:20: TRACE: got outputstream -11-19-2024 18:01:20: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testInstantiationOfRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:20: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testname=testInstantiationOfRA -11-19-2024 18:01:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:20: SVR-TRACE: **runmethod=testInstantiationOfRA -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testInstantiationOfRA_setup -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testInstantiationOfRA_cleanup -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:20: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:20: SVR: Performing callback verification... -11-19-2024 18:01:20: SVR: Got RA log. -11-19-2024 18:01:20: SVR-TRACE: Got connection. -11-19-2024 18:01:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:20: SVR: Methods called correctly -11-19-2024 18:01:20: SVR: Performing end to end verification... -11-19-2024 18:01:20: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:20: SVR: Exception inserting into table. -11-19-2024 18:01:20: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: SVR-ERROR: Exception at: -11-19-2024 18:01:20: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:354) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:350) - ... 41 more - -11-19-2024 18:01:20: SVR: Cleanup -11-19-2024 18:01:20: SVR: Test running in jsp vehicle failed -11-19-2024 18:01:20: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: Test: returning from running in a jsp vehicle -11-19-2024 18:01:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:20: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:20: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:20: Opened connection to http://localhost:8080/xa_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:20: TRACE: got outputstream -11-19-2024 18:01:20: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMCFcalledOncenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:20: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testname=testMCFcalledOnce -11-19-2024 18:01:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:20: SVR-TRACE: **runmethod=testMCFcalledOnce -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMCFcalledOnce_setup -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMCFcalledOnce_cleanup -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:20: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:20: SVR: Performing callback verification... -11-19-2024 18:01:20: SVR: Got RA log. -11-19-2024 18:01:20: SVR-TRACE: Got connection. -11-19-2024 18:01:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:20: SVR: Methods called correctly -11-19-2024 18:01:20: SVR: Performing end to end verification... -11-19-2024 18:01:20: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:20: SVR: Exception inserting into table. -11-19-2024 18:01:20: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: SVR-ERROR: Exception at: -11-19-2024 18:01:20: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:503) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:499) - ... 41 more - -11-19-2024 18:01:20: SVR: Cleanup -11-19-2024 18:01:20: SVR: Test running in jsp vehicle failed -11-19-2024 18:01:20: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: Test: returning from running in a jsp vehicle -11-19-2024 18:01:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:20: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:20: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:20: Opened connection to http://localhost:8080/xa_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:20: TRACE: got outputstream -11-19-2024 18:01:20: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRASharabilitynullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:20: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testname=testRASharability -11-19-2024 18:01:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:20: SVR-TRACE: **runmethod=testRASharability -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRASharability_setup -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRASharability_cleanup -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:20: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:20: SVR: Performing callback verification... -11-19-2024 18:01:20: SVR: Got RA log. -11-19-2024 18:01:20: SVR-TRACE: Got connection. -11-19-2024 18:01:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:20: SVR: Methods called correctly -11-19-2024 18:01:20: SVR: Performing end to end verification... -11-19-2024 18:01:20: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:20: SVR: Exception inserting into table. -11-19-2024 18:01:20: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: SVR-ERROR: Exception at: -11-19-2024 18:01:20: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:430) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:426) - ... 41 more - -11-19-2024 18:01:20: SVR: Cleanup -11-19-2024 18:01:20: SVR: Test running in jsp vehicle failed -11-19-2024 18:01:20: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: Test: returning from running in a jsp vehicle -11-19-2024 18:01:20: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: jsp -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:20 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:20: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:20: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:20: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:20: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:20: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:20: Opened connection to http://localhost:8080/xa_lifecycle_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:20: TRACE: got outputstream -11-19-2024 18:01:20: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:20: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:20: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRAforJavaBeannullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:20: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:20: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:20: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_jsp_vehicle/xa_lifecycle_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:20: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:20: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:20: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ** IN getRunMethod: testname=testRAforJavaBean -11-19-2024 18:01:20: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:20: SVR-TRACE: **runmethod=testRAforJavaBean -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRAforJavaBean_setup -11-19-2024 18:01:20: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:20: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRAforJavaBean_cleanup -11-19-2024 18:01:20: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:20: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:20: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:20: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:20: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:20: SVR: Performing callback verification... -11-19-2024 18:01:20: SVR: Got RA log. -11-19-2024 18:01:20: SVR-TRACE: Got connection. -11-19-2024 18:01:20: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:20: SVR: Methods called correctly -11-19-2024 18:01:20: SVR: Performing end to end verification... -11-19-2024 18:01:20: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:20: SVR: Exception inserting into table. -11-19-2024 18:01:20: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: SVR-ERROR: Exception at: -11-19-2024 18:01:20: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:576) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:572) - ... 41 more - -11-19-2024 18:01:20: SVR: Cleanup -11-19-2024 18:01:20: SVR: Test running in jsp vehicle failed -11-19-2024 18:01:20: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:20: Test: returning from running in a jsp vehicle -11-19-2024 18:01:20: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 7, Failures: 0, Errors: 6, Skipped: 0, Time elapsed: 5.138 s <<< FAILURE! - in com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1JspTest -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1JspTest.testAssociationMCFandRA Time elapsed: 0.192 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1JspTest.testBootstrapforNull Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1JspTest.testInstantiationOfRA Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1JspTest.testMCFcalledOnce Time elapsed: 0.024 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1JspTest.testRASharability Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1JspTest.testRAforJavaBean Time elapsed: 0.018 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1ServletTest -Nov 19, 2024 6:01:20 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:20 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:21 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:22 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:22 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:22 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:23 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:23 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:23 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:24 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:24 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:25 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:25: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:25: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:25: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:25: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:25: Opened connection to http://localhost:8080/xa_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:25: TRACE: got outputstream -11-19-2024 18:01:25: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:25: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:01:25: SVR-TRACE: In doPost -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:25: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:25: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:25: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:25: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:25: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA -11-19-2024 18:01:25: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:25: SVR-TRACE: **runmethod=testAssociationMCFandRA -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA_setup -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:25: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA_cleanup -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:25: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:25: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:25: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:25: SVR: Performing callback verification... -11-19-2024 18:01:25: SVR: Got RA log. -11-19-2024 18:01:25: SVR-TRACE: Got connection. -11-19-2024 18:01:25: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:25: SVR: Methods called correctly -11-19-2024 18:01:25: SVR: Performing end to end verification... -11-19-2024 18:01:25: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:25: SVR: Exception inserting into table. -11-19-2024 18:01:25: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: SVR-ERROR: Exception at: -11-19-2024 18:01:25: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:154) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testAssociationMCFandRA(lifecycleClient1.java:150) - ... 38 more - -11-19-2024 18:01:25: SVR: Cleanup -11-19-2024 18:01:25: SVR: Test running in servlet vehicle failed -11-19-2024 18:01:25: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: Test: returning from running in a servlet vehicle -11-19-2024 18:01:25: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:25 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:25: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:25: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:25: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:25: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:25: Opened connection to http://localhost:8080/xa_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:25: TRACE: got outputstream -11-19-2024 18:01:25: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:25: SVR-TRACE: In doPost -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:25: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:25: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAssociationMCFandRA2nullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:25: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:25: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:25: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testname=testAssociationMCFandRA2 -11-19-2024 18:01:25: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:25: SVR-TRACE: **runmethod=testAssociationMCFandRA2 -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAssociationMCFandRA2_setup -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:25: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAssociationMCFandRA2_cleanup -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:25: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:25: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:25: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:25: SVR: Performing callback verification... -11-19-2024 18:01:25: SVR: Got RA log. -11-19-2024 18:01:25: SVR-TRACE: Got connection. -11-19-2024 18:01:25: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:25: SVR: testAssociationMCFandRA2 passed: setResourceAdapter not called twice. -11-19-2024 18:01:25: SVR: Cleanup -11-19-2024 18:01:25: SVR: Test running in servlet vehicle passed -11-19-2024 18:01:25: Test status from a servlet: 0: -11-19-2024 18:01:25: Test: returning from running in a servlet vehicle -11-19-2024 18:01:25: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:25 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:25: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:25: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:25: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:25: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:25: Opened connection to http://localhost:8080/xa_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:25: TRACE: got outputstream -11-19-2024 18:01:25: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:25: SVR-TRACE: In doPost -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:25: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:25: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testBootstrapforNullnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:25: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:25: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:25: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testname=testBootstrapforNull -11-19-2024 18:01:25: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:25: SVR-TRACE: **runmethod=testBootstrapforNull -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testBootstrapforNull_setup -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:25: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testBootstrapforNull_cleanup -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:25: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:25: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:25: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:25: SVR: Performing callback verification... -11-19-2024 18:01:25: SVR: Got RA log. -11-19-2024 18:01:25: SVR-TRACE: Got connection. -11-19-2024 18:01:25: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:25: SVR: Methods called correctly -11-19-2024 18:01:25: SVR: Performing end to end verification... -11-19-2024 18:01:25: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:25: SVR: Exception inserting into table. -11-19-2024 18:01:25: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: SVR-ERROR: Exception at: -11-19-2024 18:01:25: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:280) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testBootstrapforNull(lifecycleClient1.java:276) - ... 38 more - -11-19-2024 18:01:25: SVR: Cleanup -11-19-2024 18:01:25: SVR: Test running in servlet vehicle failed -11-19-2024 18:01:25: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: Test: returning from running in a servlet vehicle -11-19-2024 18:01:25: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:25 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:25: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:25: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:25: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:25: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:25: Opened connection to http://localhost:8080/xa_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:25: TRACE: got outputstream -11-19-2024 18:01:25: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:25: SVR-TRACE: In doPost -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:25: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:25: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testInstantiationOfRAnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:25: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:25: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:25: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testname=testInstantiationOfRA -11-19-2024 18:01:25: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:25: SVR-TRACE: **runmethod=testInstantiationOfRA -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testInstantiationOfRA_setup -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:25: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testInstantiationOfRA_cleanup -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:25: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:25: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:25: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:25: SVR: Performing callback verification... -11-19-2024 18:01:25: SVR: Got RA log. -11-19-2024 18:01:25: SVR-TRACE: Got connection. -11-19-2024 18:01:25: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:25: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: SVR: Methods called correctly -11-19-2024 18:01:25: SVR: Performing end to end verification... -11-19-2024 18:01:25: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:25: Test: returning from running in a servlet vehicle -11-19-2024 18:01:25: SVR: Exception inserting into table. -11-19-2024 18:01:25: TRACE: SLEPT FOR: 0 -11-19-2024 18:01:25: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: SVR-ERROR: Exception at: -11-19-2024 18:01:25: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:354) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testInstantiationOfRA(lifecycleClient1.java:350) - ... 38 more - -11-19-2024 18:01:25: SVR: Cleanup -11-19-2024 18:01:25: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:01:25 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:25: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:25: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:25: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:25: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:25: Opened connection to http://localhost:8080/xa_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:25: TRACE: got outputstream -11-19-2024 18:01:25: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:25: SVR-TRACE: In doPost -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:25: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:25: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testMCFcalledOncenullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:25: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:25: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:25: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testname=testMCFcalledOnce -11-19-2024 18:01:25: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:25: SVR-TRACE: **runmethod=testMCFcalledOnce -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testMCFcalledOnce_setup -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:25: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testMCFcalledOnce_cleanup -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:25: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:25: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:25: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:25: SVR: Performing callback verification... -11-19-2024 18:01:25: SVR: Got RA log. -11-19-2024 18:01:25: SVR-TRACE: Got connection. -11-19-2024 18:01:25: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:25: SVR: Methods called correctly -11-19-2024 18:01:25: SVR: Performing end to end verification... -11-19-2024 18:01:25: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:25: SVR: Exception inserting into table. -11-19-2024 18:01:25: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: SVR-ERROR: Exception at: -11-19-2024 18:01:25: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:503) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testMCFcalledOnce(lifecycleClient1.java:499) - ... 38 more - -11-19-2024 18:01:25: SVR: Cleanup -11-19-2024 18:01:25: SVR: Test running in servlet vehicle failed -11-19-2024 18:01:25: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: Test: returning from running in a servlet vehicle -11-19-2024 18:01:25: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:25 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:25: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:25: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:25: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:25: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:25: Opened connection to http://localhost:8080/xa_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:25: TRACE: got outputstream -11-19-2024 18:01:25: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:25: SVR-TRACE: In doPost -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:25: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:25: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRASharabilitynullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:25: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:25: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:25: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testname=testRASharability -11-19-2024 18:01:25: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:25: SVR-TRACE: **runmethod=testRASharability -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRASharability_setup -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:25: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRASharability_cleanup -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:25: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:25: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:25: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:25: SVR: Performing callback verification... -11-19-2024 18:01:25: SVR: Got RA log. -11-19-2024 18:01:25: SVR-TRACE: Got connection. -11-19-2024 18:01:25: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:25: SVR: Methods called correctly -11-19-2024 18:01:25: SVR: Performing end to end verification... -11-19-2024 18:01:25: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:25: SVR: Exception inserting into table. -11-19-2024 18:01:25: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: SVR-ERROR: Exception at: -11-19-2024 18:01:25: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:430) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testRASharability(lifecycleClient1.java:426) - ... 38 more - -11-19-2024 18:01:25: SVR: Cleanup -11-19-2024 18:01:25: SVR: Test running in servlet vehicle failed -11-19-2024 18:01:25: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: Test: returning from running in a servlet vehicle -11-19-2024 18:01:25: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:25 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, vehicle: servlet -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:25 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_lifecycle_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:25: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:25: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:25: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:25: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:25: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:25: Opened connection to http://localhost:8080/xa_lifecycle_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:25: TRACE: got outputstream -11-19-2024 18:01:25: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:25: SVR-TRACE: In doPost -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:25: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:25: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:25: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testRAforJavaBeannullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_lifecycle_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:25: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_lifecycle_servlet_vehicle/xa_lifecycle_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:25: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:25: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:25: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ** IN getRunMethod: testname=testRAforJavaBean -11-19-2024 18:01:25: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:25: SVR-TRACE: **runmethod=testRAforJavaBean -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testRAforJavaBean_setup -11-19-2024 18:01:25: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:25: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testRAforJavaBean_cleanup -11-19-2024 18:01:25: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:25: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1 -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:25: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:25: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:25: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:25: SVR: Performing callback verification... -11-19-2024 18:01:25: SVR: Got RA log. -11-19-2024 18:01:25: SVR-TRACE: Got connection. -11-19-2024 18:01:25: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:01:25: SVR: Methods called correctly -11-19-2024 18:01:25: SVR: Performing end to end verification... -11-19-2024 18:01:25: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:25: SVR: Exception inserting into table. -11-19-2024 18:01:25: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: SVR-ERROR: Exception at: -11-19-2024 18:01:25: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:576) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.testRAforJavaBean(lifecycleClient1.java:572) - ... 38 more - -11-19-2024 18:01:25: SVR: Cleanup -11-19-2024 18:01:25: SVR: Test running in servlet vehicle failed -11-19-2024 18:01:25: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:25: Test: returning from running in a servlet vehicle -11-19-2024 18:01:25: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 7, Failures: 0, Errors: 6, Skipped: 0, Time elapsed: 4.586 s <<< FAILURE! - in com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1ServletTest -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1ServletTest.testAssociationMCFandRA Time elapsed: 0.023 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1ServletTest.testBootstrapforNull Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1ServletTest.testInstantiationOfRA Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1ServletTest.testMCFcalledOnce Time elapsed: 0.015 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1ServletTest.testRASharability Time elapsed: 0.024 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1ServletTest.testRAforJavaBean Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.xa.security.securityClient1JspTest -Nov 19, 2024 6:01:25 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:25 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:26 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:26 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:26 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:27 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:36 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:37 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:37 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:37 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:38 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:48 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:50 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.security.securityClient1, vehicle: jsp -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:50: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:50: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:50: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:50: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:50: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:50: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:50: Opened connection to http://localhost:8080/xa_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:50: TRACE: got outputstream -11-19-2024 18:01:50: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:50: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:50: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:50: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAppEISSignonnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:50: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:50: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/security/securityClient1.class -11-19-2024 18:01:50: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:50: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:50: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:50: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:50: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ** IN getRunMethod: testname=testAppEISSignon -11-19-2024 18:01:50: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:50: SVR-TRACE: **runmethod=testAppEISSignon -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:50: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:50: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAppEISSignon_setup -11-19-2024 18:01:50: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:50: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:50: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAppEISSignon_cleanup -11-19-2024 18:01:50: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:50: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:50: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@53560843 -11-19-2024 18:01:50: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@30623021 -11-19-2024 18:01:50: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:50: SVR: Got connection object from the DataSource. -11-19-2024 18:01:50: SVR: Checking for Connection Validity. -11-19-2024 18:01:50: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:50: SVR: Values inserted into table! -11-19-2024 18:01:50: SVR: Table has been dropped! -11-19-2024 18:01:50: SVR: Cleanup -11-19-2024 18:01:50: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:50: SVR: Test running in jsp vehicle passed -11-19-2024 18:01:50: Test status from a jsp: 0: -11-19-2024 18:01:50: Test: returning from running in a jsp vehicle -11-19-2024 18:01:50: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:50 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.security.securityClient1, vehicle: jsp -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:50: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:50: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:50: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:50: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:50: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:50: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:50: Opened connection to http://localhost:8080/xa_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:50: TRACE: got outputstream -11-19-2024 18:01:50: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:50: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:50: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:50: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testComponentManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:50: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:50: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/security/securityClient1.class -11-19-2024 18:01:50: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:50: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:50: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:50: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:50: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ** IN getRunMethod: testname=testComponentManaged -11-19-2024 18:01:50: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:50: SVR-TRACE: **runmethod=testComponentManaged -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:50: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:50: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testComponentManaged_setup -11-19-2024 18:01:50: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:50: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:50: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testComponentManaged_cleanup -11-19-2024 18:01:50: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:50: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:50: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@6dc00d99 -11-19-2024 18:01:50: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@7192ca60 -11-19-2024 18:01:50: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:50: SVR: Got connection object from the DataSource. -11-19-2024 18:01:50: SVR: Checking for Connection Validity. -11-19-2024 18:01:50: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:50: SVR: Values inserted into table! -11-19-2024 18:01:50: SVR: Table has been dropped! -11-19-2024 18:01:50: SVR: Cleanup -11-19-2024 18:01:50: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:50: SVR: Test running in jsp vehicle passed -11-19-2024 18:01:50: Test status from a jsp: 0: -11-19-2024 18:01:50: Test: returning from running in a jsp vehicle -11-19-2024 18:01:50: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:50 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.security.securityClient1, vehicle: jsp -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:50: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:50: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:50: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:50: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:50: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:50: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:50: Opened connection to http://localhost:8080/xa_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:50: TRACE: got outputstream -11-19-2024 18:01:50: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:50: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:50: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:50: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnManagerAllocateConnectionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:50: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:50: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/security/securityClient1.class -11-19-2024 18:01:50: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:50: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:50: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:50: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:50: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ** IN getRunMethod: testname=testConnManagerAllocateConnection -11-19-2024 18:01:50: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:50: SVR-TRACE: **runmethod=testConnManagerAllocateConnection -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:50: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:50: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnManagerAllocateConnection_setup -11-19-2024 18:01:50: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:50: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:50: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnManagerAllocateConnection_cleanup -11-19-2024 18:01:50: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:50: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:50: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@87ce0de -11-19-2024 18:01:50: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@69192e45 -11-19-2024 18:01:50: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:50: SVR: Got connection from the DataSource. -11-19-2024 18:01:50: SVR: Checking for Connection Validity. -11-19-2024 18:01:50: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:50: SVR: Exception inserting into table. -11-19-2024 18:01:50: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:50: SVR-ERROR: Exception at: -11-19-2024 18:01:50: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:278) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:274) - ... 41 more - -11-19-2024 18:01:50: SVR: Cleanup -11-19-2024 18:01:50: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:50: SVR: Test running in jsp vehicle failed -11-19-2024 18:01:50: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:50: Test: returning from running in a jsp vehicle -11-19-2024 18:01:50: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:50 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.security.securityClient1, vehicle: jsp -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:50 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_security_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:50: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:50: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:50: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:50: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:50: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:50: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:01:50: Opened connection to http://localhost:8080/xa_security_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:01:50: TRACE: got outputstream -11-19-2024 18:01:50: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:01:50: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:01:50: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:01:50: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testContainerManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_security_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:01:50: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:01:50: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:01:50: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/security/securityClient1.class -11-19-2024 18:01:50: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:50: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_jsp_vehicle/xa_security_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:50: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:50: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:50: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ** IN getRunMethod: testname=testContainerManaged -11-19-2024 18:01:50: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:50: SVR-TRACE: **runmethod=testContainerManaged -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:50: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:50: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testContainerManaged_setup -11-19-2024 18:01:50: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:50: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:50: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testContainerManaged_cleanup -11-19-2024 18:01:50: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:50: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:50: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:50: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@674cdb65 -11-19-2024 18:01:50: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@631b56ae -11-19-2024 18:01:50: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:50: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:50: SVR: Got connection from the DataSource. -11-19-2024 18:01:50: SVR: Checking for Connection Validity. -11-19-2024 18:01:50: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:50: SVR: Exception inserting into table. -11-19-2024 18:01:50: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:50: SVR-ERROR: Exception at: -11-19-2024 18:01:50: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.security.securityClient1.testContainerManaged(securityClient1.java:144) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.security.securityClient1.testContainerManaged(securityClient1.java:140) - ... 41 more - -11-19-2024 18:01:50: SVR: Cleanup -11-19-2024 18:01:50: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:50: SVR: Test running in jsp vehicle failed -11-19-2024 18:01:50: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:50: Test: returning from running in a jsp vehicle -11-19-2024 18:01:50: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 4, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 25.639 s <<< FAILURE! - in com.sun.ts.tests.connector.xa.security.securityClient1JspTest -[ERROR] com.sun.ts.tests.connector.xa.security.securityClient1JspTest.testConnManagerAllocateConnection Time elapsed: 0.016 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.security.securityClient1JspTest.testContainerManaged Time elapsed: 0.018 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.xa.security.securityClient1ServletTest -Nov 19, 2024 6:01:50 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:51 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:52 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:53 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:53 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:57 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:58 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:01:58 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:01:58 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:01:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.security.securityClient1, vehicle: servlet -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:59: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:59: Opened connection to http://localhost:8080/xa_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:59: TRACE: got outputstream -11-19-2024 18:01:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:59: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:01:59: SVR-TRACE: In doPost -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testAppEISSignonnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/security/securityClient1.class -11-19-2024 18:01:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ** IN getRunMethod: testname=testAppEISSignon -11-19-2024 18:01:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:59: SVR-TRACE: **runmethod=testAppEISSignon -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testAppEISSignon_setup -11-19-2024 18:01:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testAppEISSignon_cleanup -11-19-2024 18:01:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:59: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@6fb4b3b2 -11-19-2024 18:01:59: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@143ca883 -11-19-2024 18:01:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:59: SVR: Got connection object from the DataSource. -11-19-2024 18:01:59: SVR: Checking for Connection Validity. -11-19-2024 18:01:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:59: SVR: Values inserted into table! -11-19-2024 18:01:59: SVR: Table has been dropped! -11-19-2024 18:01:59: SVR: Cleanup -11-19-2024 18:01:59: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:59: SVR: Test running in servlet vehicle passed -11-19-2024 18:01:59: Test status from a servlet: 0: -11-19-2024 18:01:59: Test: returning from running in a servlet vehicle -11-19-2024 18:01:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.security.securityClient1, vehicle: servlet -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:59: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:59: Opened connection to http://localhost:8080/xa_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:59: TRACE: got outputstream -11-19-2024 18:01:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:59: SVR-TRACE: In doPost -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testComponentManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/security/securityClient1.class -11-19-2024 18:01:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ** IN getRunMethod: testname=testComponentManaged -11-19-2024 18:01:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:59: SVR-TRACE: **runmethod=testComponentManaged -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testComponentManaged_setup -11-19-2024 18:01:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testComponentManaged_cleanup -11-19-2024 18:01:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:59: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@628e9473 -11-19-2024 18:01:59: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@61909204 -11-19-2024 18:01:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:59: SVR: Got connection object from the DataSource. -11-19-2024 18:01:59: SVR: Checking for Connection Validity. -11-19-2024 18:01:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:59: SVR: Values inserted into table! -11-19-2024 18:01:59: SVR: Table has been dropped! -11-19-2024 18:01:59: SVR: Cleanup -11-19-2024 18:01:59: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:59: SVR: Test running in servlet vehicle passed -11-19-2024 18:01:59: Test status from a servlet: 0: -11-19-2024 18:01:59: Test: returning from running in a servlet vehicle -11-19-2024 18:01:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.security.securityClient1, vehicle: servlet -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:59: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:59: Opened connection to http://localhost:8080/xa_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:59: TRACE: got outputstream -11-19-2024 18:01:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:59: SVR-TRACE: In doPost -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testConnManagerAllocateConnectionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/security/securityClient1.class -11-19-2024 18:01:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ** IN getRunMethod: testname=testConnManagerAllocateConnection -11-19-2024 18:01:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:59: SVR-TRACE: **runmethod=testConnManagerAllocateConnection -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testConnManagerAllocateConnection_setup -11-19-2024 18:01:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testConnManagerAllocateConnection_cleanup -11-19-2024 18:01:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:59: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@26f7bf95 -11-19-2024 18:01:59: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@160095ad -11-19-2024 18:01:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:59: SVR: Got connection from the DataSource. -11-19-2024 18:01:59: SVR: Checking for Connection Validity. -11-19-2024 18:01:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:59: SVR: Exception inserting into table. -11-19-2024 18:01:59: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:59: SVR-ERROR: Exception at: -11-19-2024 18:01:59: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:278) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.security.securityClient1.testConnManagerAllocateConnection(securityClient1.java:274) - ... 38 more - -11-19-2024 18:01:59: SVR: Cleanup -11-19-2024 18:01:59: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:59: SVR: Test running in servlet vehicle failed -11-19-2024 18:01:59: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:59: Test: returning from running in a servlet vehicle -11-19-2024 18:01:59: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:01:59 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.security.securityClient1, vehicle: servlet -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:01:59 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.security.securityClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_security_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:01:59: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:01:59: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:59: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:01:59: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:01:59: TRACE: in ServiceEETest.run() method -11-19-2024 18:01:59: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:01:59: Opened connection to http://localhost:8080/xa_security_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:01:59: TRACE: got outputstream -11-19-2024 18:01:59: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:01:59: SVR-TRACE: In doPost -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:01:59: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:01:59: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:01:59: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testContainerManagednullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_security_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.security.securityClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:01:59: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/security/securityClient1.class -11-19-2024 18:01:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:59: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_security_servlet_vehicle/xa_security_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:01:59: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:01:59: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:01:59: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ** IN getRunMethod: testname=testContainerManaged -11-19-2024 18:01:59: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:01:59: SVR-TRACE: **runmethod=testContainerManaged -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:01:59: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:01:59: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testContainerManaged_setup -11-19-2024 18:01:59: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:01:59: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:01:59: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testContainerManaged_cleanup -11-19-2024 18:01:59: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:01:59: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.security.securityClient1 -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:01:59: SVR: Using: java:comp/env/eis/whitebox-xa-param -11-19-2024 18:01:59: SVR: ds1 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@354b173a -11-19-2024 18:01:59: SVR: ds2 JNDI lookup: com.sun.ts.tests.common.connector.whitebox.TSEISDataSource@1ca17a96 -11-19-2024 18:01:59: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:01:59: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:01:59: SVR: Got connection from the DataSource. -11-19-2024 18:01:59: SVR: Checking for Connection Validity. -11-19-2024 18:01:59: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:01:59: SVR: Exception inserting into table. -11-19-2024 18:01:59: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:59: SVR-ERROR: Exception at: -11-19-2024 18:01:59: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.security.securityClient1.testContainerManaged(securityClient1.java:144) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.security.securityClient1.testContainerManaged(securityClient1.java:140) - ... 38 more - -11-19-2024 18:01:59: SVR: Cleanup -11-19-2024 18:01:59: SVR-TRACE: Closing connection in cleanup. -11-19-2024 18:01:59: SVR: Test running in servlet vehicle failed -11-19-2024 18:01:59: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:01:59: Test: returning from running in a servlet vehicle -11-19-2024 18:01:59: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 4, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 9.123 s <<< FAILURE! - in com.sun.ts.tests.connector.xa.security.securityClient1ServletTest -[ERROR] com.sun.ts.tests.connector.xa.security.securityClient1ServletTest.testConnManagerAllocateConnection Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.security.securityClient1ServletTest.testContainerManaged Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest -Nov 19, 2024 6:02:00 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:02:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:02:00 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:02:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:02:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:02:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:02:01 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:02:02 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:02:02 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:02:02 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:02:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:02:03 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:02:04 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:04: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:04: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:04: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:04: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:02:04: Opened connection to http://localhost:8080/xa_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:02:04: TRACE: got outputstream -11-19-2024 18:02:04: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:02:04: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testForUnsharedTimernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:02:04: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:02:04: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:04: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:04: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testname=testForUnsharedTimer -11-19-2024 18:02:04: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:04: SVR-TRACE: **runmethod=testForUnsharedTimer -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testForUnsharedTimer_setup -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:04: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testForUnsharedTimer_cleanup -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:04: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:04: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:04: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:04: SVR: Performing callback verification... -11-19-2024 18:02:04: SVR: Got RA log. -11-19-2024 18:02:04: SVR-TRACE: Got connection. -11-19-2024 18:02:04: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:04: SVR: Methods called correctly -11-19-2024 18:02:04: SVR: Performing end to end verification... -11-19-2024 18:02:04: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:04: SVR: Exception inserting into table. -11-19-2024 18:02:04: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: SVR-ERROR: Exception at: -11-19-2024 18:02:04: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:544) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:540) - ... 41 more - -11-19-2024 18:02:04: SVR: Cleanup -11-19-2024 18:02:04: SVR: Test running in jsp vehicle failed -11-19-2024 18:02:04: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: Test: returning from running in a jsp vehicle -11-19-2024 18:02:04: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:04 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:04: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:04: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:04: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:04: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:02:04: Opened connection to http://localhost:8080/xa_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:02:04: TRACE: got outputstream -11-19-2024 18:02:04: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:02:04: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:02:04: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:02:04: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:04: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:04: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testname=testNestedWork -11-19-2024 18:02:04: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:04: SVR-TRACE: **runmethod=testNestedWork -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWork_setup -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:04: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWork_cleanup -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:04: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:04: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:04: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:04: SVR: Performing callback verification... -11-19-2024 18:02:04: SVR: Got RA log. -11-19-2024 18:02:04: SVR-TRACE: Got connection. -11-19-2024 18:02:04: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:04: SVR: Methods called correctly -11-19-2024 18:02:04: SVR: Performing end to end verification... -11-19-2024 18:02:04: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:04: SVR: Exception inserting into table. -11-19-2024 18:02:04: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: SVR-ERROR: Exception at: -11-19-2024 18:02:04: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:618) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:614) - ... 41 more - -11-19-2024 18:02:04: SVR: Cleanup -11-19-2024 18:02:04: SVR: Test running in jsp vehicle failed -11-19-2024 18:02:04: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: Test: returning from running in a jsp vehicle -11-19-2024 18:02:04: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:04 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:04: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:04: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:04: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:04: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:02:04: Opened connection to http://localhost:8080/xa_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:02:04: TRACE: got outputstream -11-19-2024 18:02:04: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:02:04: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:02:04: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:02:04: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:04: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:04: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWork -11-19-2024 18:02:04: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:04: SVR-TRACE: **runmethod=testScheduleWork -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWork_setup -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:04: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWork_cleanup -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:04: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:04: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:04: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:04: SVR: Performing callback verification... -11-19-2024 18:02:04: SVR: Got RA log. -11-19-2024 18:02:04: SVR-TRACE: Got connection. -11-19-2024 18:02:04: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:04: SVR: Methods called correctly -11-19-2024 18:02:04: SVR: Performing end to end verification... -11-19-2024 18:02:04: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:04: Test: returning from running in a jsp vehicle -11-19-2024 18:02:04: SVR: Exception inserting into table. -11-19-2024 18:02:04: TRACE: SLEPT FOR: 0 -11-19-2024 18:02:04: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: SVR-ERROR: Exception at: -11-19-2024 18:02:04: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:305) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:301) - ... 41 more - -11-19-2024 18:02:04: SVR: Cleanup -11-19-2024 18:02:04: SVR: Test running in jsp vehicle failed -Nov 19, 2024 6:02:04 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:04: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:04: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:04: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:04: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:02:04: Opened connection to http://localhost:8080/xa_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:02:04: TRACE: got outputstream -11-19-2024 18:02:04: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:02:04: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorkListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:02:04: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:02:04: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:04: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:04: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWorkListener -11-19-2024 18:02:04: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:04: SVR-TRACE: **runmethod=testScheduleWorkListener -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWorkListener_setup -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:04: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWorkListener_cleanup -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:04: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:04: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:04: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:04: SVR: Performing callback verification... -11-19-2024 18:02:04: SVR: Got RA log. -11-19-2024 18:02:04: SVR-TRACE: Got connection. -11-19-2024 18:02:04: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:04: SVR: Methods called correctly -11-19-2024 18:02:04: SVR: Performing end to end verification... -11-19-2024 18:02:04: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:04: SVR: Exception inserting into table. -11-19-2024 18:02:04: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: SVR-ERROR: Exception at: -11-19-2024 18:02:04: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:378) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:374) - ... 41 more - -11-19-2024 18:02:04: SVR: Cleanup -11-19-2024 18:02:04: SVR: Test running in jsp vehicle failed -11-19-2024 18:02:04: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: Test: returning from running in a jsp vehicle -11-19-2024 18:02:04: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:04 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:04: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:04: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:04: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:04: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:02:04: Opened connection to http://localhost:8080/xa_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:02:04: TRACE: got outputstream -11-19-2024 18:02:04: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:02:04: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testUnknownWorkDurationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:02:04: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:02:04: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:04: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:04: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testname=testUnknownWorkDuration -11-19-2024 18:02:04: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:04: SVR-TRACE: **runmethod=testUnknownWorkDuration -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testUnknownWorkDuration_setup -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:04: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testUnknownWorkDuration_cleanup -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:04: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:04: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:04: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:04: SVR: Performing callback verification... -11-19-2024 18:02:04: SVR: Got RA log. -11-19-2024 18:02:04: SVR-TRACE: Got connection. -11-19-2024 18:02:04: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:04: SVR: Methods called correctly -11-19-2024 18:02:04: SVR: Performing end to end verification... -11-19-2024 18:02:04: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:04: SVR: Exception inserting into table. -11-19-2024 18:02:04: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: SVR-ERROR: Exception at: -11-19-2024 18:02:04: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:701) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:697) - ... 41 more - -11-19-2024 18:02:04: SVR: Cleanup -11-19-2024 18:02:04: SVR: Test running in jsp vehicle failed -11-19-2024 18:02:04: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: Test: returning from running in a jsp vehicle -11-19-2024 18:02:04: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:04 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:04: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:04: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:04: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:04: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:02:04: Opened connection to http://localhost:8080/xa_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:02:04: TRACE: got outputstream -11-19-2024 18:02:04: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:02:04: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkCompletedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:02:04: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:02:04: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:04: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:04: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testname=testWorkCompletedException -11-19-2024 18:02:04: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:04: SVR-TRACE: **runmethod=testWorkCompletedException -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkCompletedException_setup -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:04: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkCompletedException_cleanup -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:04: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:04: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:04: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:04: SVR: Performing callback verification... -11-19-2024 18:02:04: SVR: Got RA log. -11-19-2024 18:02:04: SVR-TRACE: Got connection. -11-19-2024 18:02:04: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:04: SVR: Methods called correctly -11-19-2024 18:02:04: SVR: Performing end to end verification... -11-19-2024 18:02:04: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:04: SVR: Exception inserting into table. -11-19-2024 18:02:04: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: SVR-ERROR: Exception at: -11-19-2024 18:02:04: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:452) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:448) - ... 41 more - -11-19-2024 18:02:04: SVR: Cleanup -11-19-2024 18:02:04: SVR: Test running in jsp vehicle failed -11-19-2024 18:02:04: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: Test: returning from running in a jsp vehicle -11-19-2024 18:02:04: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:04 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:04: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:04: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:04: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:04: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:02:04: Opened connection to http://localhost:8080/xa_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:02:04: TRACE: got outputstream -11-19-2024 18:02:04: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:02:04: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkListenerImplementationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:02:04: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:02:04: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:04: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:04: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testname=testWorkListenerImplementation -11-19-2024 18:02:04: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:04: SVR-TRACE: **runmethod=testWorkListenerImplementation -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkListenerImplementation_setup -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:04: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkListenerImplementation_cleanup -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:04: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:04: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:04: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:04: SVR: Performing callback verification... -11-19-2024 18:02:04: SVR: Got RA log. -11-19-2024 18:02:04: SVR-TRACE: Got connection. -11-19-2024 18:02:04: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:04: SVR: Methods called correctly -11-19-2024 18:02:04: SVR: Performing end to end verification... -11-19-2024 18:02:04: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:04: SVR: Exception inserting into table. -11-19-2024 18:02:04: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: SVR-ERROR: Exception at: -11-19-2024 18:02:04: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:232) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:228) - ... 41 more - -11-19-2024 18:02:04: SVR: Cleanup -11-19-2024 18:02:04: SVR: Test running in jsp vehicle failed -11-19-2024 18:02:04: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: Test: returning from running in a jsp vehicle -11-19-2024 18:02:04: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:04 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: jsp -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:04 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=jsp, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_jsp_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=jsp, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:04: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:04: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:04: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:04: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:04: TRACE: Vehicle to be used for this test is: jsp -11-19-2024 18:02:04: Opened connection to http://localhost:8080/xa_workmgt_jsp_vehicle_web/jsp_vehicle.jsp -11-19-2024 18:02:04: TRACE: got outputstream -11-19-2024 18:02:04: TRACE: wrote objects to the jsp vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - In doJSPGet -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - got InputStream -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle -read properties!!! -11-19-2024 18:02:04: SVR-TRACE: JSP Vehicle - list the props -11-19-2024 18:02:04: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=jspnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkManagerImplementaionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_jsp_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=jspnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - read Objects -11-19-2024 18:02:04: SVR-TRACE: Remote logging set for JSP Vehicle -11-19-2024 18:02:04: SVR-TRACE: JSPVehicle - Here are the props -11-19-2024 18:02:04: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_jsp_vehicle/xa_workmgt_jsp_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:04: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:04: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:04: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ** IN getRunMethod: testname=testWorkManagerImplementaion -11-19-2024 18:02:04: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:04: SVR-TRACE: **runmethod=testWorkManagerImplementaion -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkManagerImplementaion_setup -11-19-2024 18:02:04: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:04: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkManagerImplementaion_cleanup -11-19-2024 18:02:04: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:04: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:04: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:04: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:04: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:04: SVR: Performing callback verification... -11-19-2024 18:02:04: SVR: Got RA log. -11-19-2024 18:02:04: SVR-TRACE: Got connection. -11-19-2024 18:02:04: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:04: SVR: Methods called correctly -11-19-2024 18:02:04: SVR: Performing end to end verification... -11-19-2024 18:02:04: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:04: SVR: Exception inserting into table. -11-19-2024 18:02:04: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: SVR-ERROR: Exception at: -11-19-2024 18:02:04: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:156) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at org.apache.jsp.jsp_005fvehicle_jsp.runTest(jsp_005fvehicle_jsp.java:30) - at org.apache.jsp.jsp_005fvehicle_jsp._jspService(jsp_005fvehicle_jsp.java:136) - at org.glassfish.wasp.runtime.HttpJspBase.service(HttpJspBase.java:68) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.glassfish.wasp.servlet.JspServletWrapper.service(JspServletWrapper.java:317) - at org.glassfish.wasp.servlet.JspServlet.serviceJspFile(JspServlet.java:358) - at org.glassfish.wasp.servlet.JspServlet.service(JspServlet.java:287) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:152) - ... 41 more - -11-19-2024 18:02:04: SVR: Cleanup -11-19-2024 18:02:04: SVR: Test running in jsp vehicle failed -11-19-2024 18:02:04: Test status from a jsp: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:04: Test: returning from running in a jsp vehicle -11-19-2024 18:02:04: TRACE: SLEPT FOR: 0 -[ERROR] Tests run: 8, Failures: 0, Errors: 8, Skipped: 0, Time elapsed: 4.977 s <<< FAILURE! - in com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest.testForUnsharedTimer Time elapsed: 0.181 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest.testNestedWork Time elapsed: 0.018 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest.testScheduleWork Time elapsed: 0.023 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest.testScheduleWorkListener Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest.testUnknownWorkDuration Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest.testWorkCompletedException Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest.testWorkListenerImplementation Time elapsed: 0.016 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1JspTest.testWorkManagerImplementaion Time elapsed: 0.015 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[INFO] Running com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest -Nov 19, 2024 6:02:04 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:05 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:02:05 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:02:05 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/common/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:common:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:02:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:02:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:02:06 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/project/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:project:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:02:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:02:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:02:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/runtime/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:runtime:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:02:07 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repository.jboss.org/nexus/content/repositories/releases/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jboss (https://repository.jboss.org/nexus/content/repositories/releases/) -Nov 19, 2024 6:02:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://repo1.maven.org/maven2/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in central (https://repo1.maven.org/maven2) -Nov 19, 2024 6:02:08 PM org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener transferFailed -WARNING: Failed downloading jakarta/tck/libutil/11.0.0-SNAPSHOT/maven-metadata.xml from https://jakarta.oss.sonatype.org/content/repositories/staging/. Reason: -org.eclipse.aether.transfer.MetadataNotFoundException: Could not find metadata jakarta.tck:libutil:11.0.0-SNAPSHOT/maven-metadata.xml in jakarta-snapshots (https://jakarta.oss.sonatype.org/content/repositories/staging/) -Nov 19, 2024 6:02:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:09: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:09: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:09: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:09: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:02:09: Opened connection to http://localhost:8080/xa_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:02:09: TRACE: got outputstream -11-19-2024 18:02:09: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:02:09: SVR-TRACE: init com.sun.ts.tests.common.vehicle.servlet.ServletVehicle ... -11-19-2024 18:02:09: SVR-TRACE: In doPost -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:02:09: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:02:09: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testForUnsharedTimernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:09: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:09: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:09: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testname=testForUnsharedTimer -11-19-2024 18:02:09: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:09: SVR-TRACE: **runmethod=testForUnsharedTimer -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testForUnsharedTimer_setup -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:09: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testForUnsharedTimer_cleanup -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:09: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:09: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:09: SVR: Performing callback verification... -11-19-2024 18:02:09: SVR: Got RA log. -11-19-2024 18:02:09: SVR-TRACE: Got connection. -11-19-2024 18:02:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:09: SVR: Methods called correctly -11-19-2024 18:02:09: SVR: Performing end to end verification... -11-19-2024 18:02:09: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:09: SVR: Exception inserting into table. -11-19-2024 18:02:09: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: SVR-ERROR: Exception at: -11-19-2024 18:02:09: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:544) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testForUnsharedTimer(workmgtClient1.java:540) - ... 38 more - -11-19-2024 18:02:09: SVR: Cleanup -11-19-2024 18:02:09: SVR: Test running in servlet vehicle failed -11-19-2024 18:02:09: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: Test: returning from running in a servlet vehicle -11-19-2024 18:02:09: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:09: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:09: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:09: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:09: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:02:09: Opened connection to http://localhost:8080/xa_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:02:09: TRACE: got outputstream -11-19-2024 18:02:09: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:02:09: SVR-TRACE: In doPost -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:02:09: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:02:09: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testNestedWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:09: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:09: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:09: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testname=testNestedWork -11-19-2024 18:02:09: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:09: SVR-TRACE: **runmethod=testNestedWork -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testNestedWork_setup -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:09: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testNestedWork_cleanup -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:09: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:09: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:09: SVR: Performing callback verification... -11-19-2024 18:02:09: SVR: Got RA log. -11-19-2024 18:02:09: SVR-TRACE: Got connection. -11-19-2024 18:02:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:09: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: SVR: Methods called correctly -11-19-2024 18:02:09: SVR: Performing end to end verification... -11-19-2024 18:02:09: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:09: SVR: Exception inserting into table. -11-19-2024 18:02:09: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: Test: returning from running in a servlet vehicle -11-19-2024 18:02:09: SVR-ERROR: Exception at: -11-19-2024 18:02:09: TRACE: SLEPT FOR: 0 -11-19-2024 18:02:09: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:618) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testNestedWork(workmgtClient1.java:614) - ... 38 more - -11-19-2024 18:02:09: SVR: Cleanup -11-19-2024 18:02:09: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:02:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:09: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:09: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:09: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:09: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:02:09: Opened connection to http://localhost:8080/xa_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:02:09: TRACE: got outputstream -11-19-2024 18:02:09: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:02:09: SVR-TRACE: In doPost -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:02:09: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:02:09: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorknullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:09: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:09: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:09: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWork -11-19-2024 18:02:09: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:09: SVR-TRACE: **runmethod=testScheduleWork -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWork_setup -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:09: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWork_cleanup -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:09: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:09: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:09: SVR: Performing callback verification... -11-19-2024 18:02:09: SVR: Got RA log. -11-19-2024 18:02:09: SVR-TRACE: Got connection. -11-19-2024 18:02:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:09: SVR: Methods called correctly -11-19-2024 18:02:09: SVR: Performing end to end verification... -11-19-2024 18:02:09: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:09: SVR: Exception inserting into table. -11-19-2024 18:02:09: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: SVR-ERROR: Exception at: -11-19-2024 18:02:09: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:305) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testScheduleWork(workmgtClient1.java:301) - ... 38 more - -11-19-2024 18:02:09: SVR: Cleanup -11-19-2024 18:02:09: SVR: Test running in servlet vehicle failed -11-19-2024 18:02:09: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: Test: returning from running in a servlet vehicle -11-19-2024 18:02:09: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:09: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:09: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:09: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:09: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:02:09: Opened connection to http://localhost:8080/xa_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:02:09: TRACE: got outputstream -11-19-2024 18:02:09: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:02:09: SVR-TRACE: In doPost -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:02:09: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:02:09: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testScheduleWorkListenernullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:09: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:09: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:09: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testname=testScheduleWorkListener -11-19-2024 18:02:09: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:09: SVR-TRACE: **runmethod=testScheduleWorkListener -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testScheduleWorkListener_setup -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:09: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testScheduleWorkListener_cleanup -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:09: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:09: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:09: SVR: Performing callback verification... -11-19-2024 18:02:09: SVR: Got RA log. -11-19-2024 18:02:09: SVR-TRACE: Got connection. -11-19-2024 18:02:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:09: SVR: Methods called correctly -11-19-2024 18:02:09: SVR: Performing end to end verification... -11-19-2024 18:02:09: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:09: SVR: Exception inserting into table. -11-19-2024 18:02:09: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: SVR-ERROR: Exception at: -11-19-2024 18:02:09: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:378) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testScheduleWorkListener(workmgtClient1.java:374) - ... 38 more - -11-19-2024 18:02:09: SVR: Cleanup -11-19-2024 18:02:09: SVR: Test running in servlet vehicle failed -11-19-2024 18:02:09: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: Test: returning from running in a servlet vehicle -11-19-2024 18:02:09: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:09: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:09: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:09: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:09: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:02:09: Opened connection to http://localhost:8080/xa_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:02:09: TRACE: got outputstream -11-19-2024 18:02:09: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:02:09: SVR-TRACE: In doPost -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:02:09: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:02:09: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testUnknownWorkDurationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:09: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:09: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:09: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testname=testUnknownWorkDuration -11-19-2024 18:02:09: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:09: SVR-TRACE: **runmethod=testUnknownWorkDuration -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testUnknownWorkDuration_setup -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:09: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testUnknownWorkDuration_cleanup -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:09: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:09: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:09: SVR: Performing callback verification... -11-19-2024 18:02:09: SVR: Got RA log. -11-19-2024 18:02:09: SVR-TRACE: Got connection. -11-19-2024 18:02:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:09: SVR: Methods called correctly -11-19-2024 18:02:09: SVR: Performing end to end verification... -11-19-2024 18:02:09: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:09: SVR: Exception inserting into table. -11-19-2024 18:02:09: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: SVR-ERROR: Exception at: -11-19-2024 18:02:09: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:701) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testUnknownWorkDuration(workmgtClient1.java:697) - ... 38 more - -11-19-2024 18:02:09: SVR: Cleanup -11-19-2024 18:02:09: SVR: Test running in servlet vehicle failed -11-19-2024 18:02:09: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: Test: returning from running in a servlet vehicle -11-19-2024 18:02:09: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:09: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:09: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:09: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:09: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:02:09: Opened connection to http://localhost:8080/xa_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:02:09: TRACE: got outputstream -11-19-2024 18:02:09: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:02:09: SVR-TRACE: In doPost -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:02:09: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:02:09: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkCompletedExceptionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:09: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:09: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:09: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testname=testWorkCompletedException -11-19-2024 18:02:09: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:09: SVR-TRACE: **runmethod=testWorkCompletedException -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkCompletedException_setup -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:09: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkCompletedException_cleanup -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:09: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:09: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:09: SVR: Performing callback verification... -11-19-2024 18:02:09: SVR: Got RA log. -11-19-2024 18:02:09: SVR-TRACE: Got connection. -11-19-2024 18:02:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:09: SVR: Methods called correctly -11-19-2024 18:02:09: SVR: Performing end to end verification... -11-19-2024 18:02:09: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:09: SVR: Exception inserting into table. -11-19-2024 18:02:09: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: SVR-ERROR: Exception at: -11-19-2024 18:02:09: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:452) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkCompletedException(workmgtClient1.java:448) - ... 38 more - -11-19-2024 18:02:09: SVR: Cleanup -11-19-2024 18:02:09: SVR: Test running in servlet vehicle failed -11-19-2024 18:02:09: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: Test: returning from running in a servlet vehicle -11-19-2024 18:02:09: TRACE: SLEPT FOR: 0 -Nov 19, 2024 6:02:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:09: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:09: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:09: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:09: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:02:09: Opened connection to http://localhost:8080/xa_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:02:09: TRACE: got outputstream -11-19-2024 18:02:09: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:02:09: SVR-TRACE: In doPost -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:02:09: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:02:09: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkListenerImplementationnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:09: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:09: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:09: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testname=testWorkListenerImplementation -11-19-2024 18:02:09: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:09: SVR-TRACE: **runmethod=testWorkListenerImplementation -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkListenerImplementation_setup -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:09: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkListenerImplementation_cleanup -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:09: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:09: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:09: SVR: Performing callback verification... -11-19-2024 18:02:09: SVR: Got RA log. -11-19-2024 18:02:09: SVR-TRACE: Got connection. -11-19-2024 18:02:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:09: SVR: Methods called correctly -11-19-2024 18:02:09: SVR: Performing end to end verification... -11-19-2024 18:02:09: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:09: SVR: Exception inserting into table. -11-19-2024 18:02:09: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: SVR-ERROR: Exception at: -11-19-2024 18:02:09: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:232) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkListenerImplementation(workmgtClient1.java:228) - ... 38 more - -11-19-2024 18:02:09: Test: returning from running in a servlet vehicle -11-19-2024 18:02:09: SVR: Cleanup -11-19-2024 18:02:09: TRACE: SLEPT FOR: 0 -11-19-2024 18:02:09: SVR: Test running in servlet vehicle failed -Nov 19, 2024 6:02:09 PM org.jboss.arquillian.container.test.impl.MapObject populate -WARNING: Configuration contain properties not supported by the backing object tck.arquillian.protocol.javatest.JavaTestProtocolConfiguration -Unused property entries: {clientDir=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck, unpackClientEar=true, clientEarDir=target/appclient, clientTimeout=20000, runAsVehicle=true, runClient=true} -Supported property names: [tsJteFile, trace, fork, tsSqlStmtFile, workDir] -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Base class: com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, vehicle: servlet -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Read in ts.jte file: /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/bin/ts.jte -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property db.dml.file -> derby.dml.file to derby/derby.dml.sql -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.server -> mailHost to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property javamail.username -> mailuser1 to -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.user -> user1 to ${derby.user} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property jstl.db.password -> password1 to ${derby.passwd} -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property log.file.location -> vi.log.file.location to ${vi.domain}/logs -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property ts_home -> ts.home to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/ -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property user1 -> derby.user to cts1 -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: Setting property webServerHost -> orb.host to localhost -Nov 19, 2024 6:02:09 PM tck.arquillian.protocol.common.TsTestPropsBuilder runArgs -INFO: {harness.socket.retry.count=10, logical.hostname.servlet=server, harness.temp.directory=${ts.home}/tmp, whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md, porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, javamail.protocol=imap, whitebox-tx=java:comp/env/eis/whitebox-tx, porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection, log.file.location=${vi.domain}/logs, password=j2ee, porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment, porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM, db.supports.sequence=true, varbinarySize=48, sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming, porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext, DriverManager=no, authuser=javajoe, jstl.db.user=${derby.user}, securedWebServicePort=1044, binarySize=24, whitebox-multianno=java:comp/env/eis/whitebox-multianno, cofSize=5, javamail.mailbox=test1, finder=cts, authpassword=javajoe, work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork, variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl, imap.port=143, ftable=ctstable2, whitebox-xa=java:comp/env/eis/whitebox-xa, whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete, harness.log.delayseconds=0, mailuser1=, harness.log.traceflag=true, transport_protocol=smtp, org.omg.CORBA.ORBClass=foo, javamail.root.path="", whitebox-notx-param=java:comp/env/eis/whitebox-notx-param, jms_timeout=10000, test_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1, rauser1=cts1, whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode, javamail.server=, db.dml.file=derby/derby.dml.sql, java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, Driver=DriverOnlyUsedIfDriverManagerIsYes, rauser2=cts2, harness.log.port=2000, ws_wait=5, vehicle=servlet, whitebox-notx=java:comp/env/eis/whitebox-notx, javamail.username=, smtp.port=25, jdbc.db=derby, iofile=MailIOFile.txt, porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL, porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL, webServerPort=8080, user1=cts1, porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, cofTypeSize=5, platform.mode=jakartaEE, vehicle_archive_name=xa_workmgt_servlet_vehicle, ts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/, whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd, porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin, whitebox-xa-param=java:comp/env/eis/whitebox-xa-param, service_eetest.vehicles=servlet, javamail.password=, jstl.db.password=${derby.passwd}, ptable=ctstable1, rapassword2=cts2, db1=db1OnlyUsedIfDriverManagerIsYes, whitebox-tx-param=java:comp/env/eis/whitebox-tx-param, longvarbinarySize=50, db2=db1OnlyUsedIfDriverManagerIsYes, user=j2ee, rapassword1=cts1, webServerHost=localhost} -11-19-2024 18:02:09: TRACE: Check if called from within test process, inTestHarness= true -11-19-2024 18:02:09: TRACE: in ServiceEETest.run(), this URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient URL is: file:/home/g/.m2/repository/jakarta/tck/common/11.0.0-SNAPSHOT/common-11.0.0-SNAPSHOT.jar -11-19-2024 18:02:09: TRACE: VehicleClient class check if is vehicle class = yes, is a com.sun.ts.tests.common.vehicle.VehicleClient -11-19-2024 18:02:09: TRACE: in ServiceEETest.run() method -11-19-2024 18:02:09: TRACE: Vehicle to be used for this test is: servlet -11-19-2024 18:02:09: Opened connection to http://localhost:8080/xa_workmgt_servlet_vehicle_web/servlet_vehicle -11-19-2024 18:02:09: TRACE: got outputstream -11-19-2024 18:02:09: TRACE: wrote objects to the servlet vehicle -11-19-2024 18:02:09: SVR-TRACE: In doPost -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - In doGet -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - got InputStream -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - read Objects -11-19-2024 18:02:09: SVR-TRACE: Remote logging set for Servlet Vehicle -11-19-2024 18:02:09: SVR-TRACE: ServletVehicle - Here are the props -11-19-2024 18:02:09: SVR-TRACE: --- Property Listing ---nullChar_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3nullVarchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=?nullsmtp.port=25nullDEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ?nullSelect_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ?nullBigint_Query_Null=Select NULL_VAL from Bigint_TabnullBit_Tab_Max_Update=update Bit_Tab set MAX_VAL=?nullInsert_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5)nullXa_Tab1_Select=select * from Xa_Tab1nullWeek_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3nulljavamail.root.path=""nullDEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?)nulljstl.db.user=${derby.user}nullDayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3nullharness.log.port=2000nullAbs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3nullSEC_Tab1_Delete=delete from SEC_Tab1nullLength_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3nullFloat_Tab_Min_Update=update Float_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ?nullCOFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ?nullBigint_Tab_Insert=insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null)nullEscape_Seq_ChkQuery=select count(*) from ctstable2nullXa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' )nullDEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ?nullNumeric_Query_Null=Select NULL_VAL from Numeric_Tabnulllogical.hostname.servlet=servernullTimestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_TablenullTinyint_Query_Min=Select MIN_VAL from Tinyint_TabnullUpdate_Jstl_Tab2_Using_Param_Query=UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ?nullDbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?)nullCOFFEE_insert=insert into Coffee_Table values(?, ?, ?)nullFloat_Query_Min=Select MIN_VAL from Float_TabnullTimestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSmallint_Query_Null=Select NULL_VAL from Smallint_TabnullAcos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ?nullReal_Tab_Delete=delete from Real_TabnullDEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3nullFloat_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null)nullharness.socket.retry.count=10nullSelCoffeeNull=select * from ctstable2 where TYPE_ID=0nullNumeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null)nullLongvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=?nullSmallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=?nullCot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3nullDriver=DriverOnlyUsedIfDriverManagerIsYesnullCOFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ?nullSmallint_Tab_Insert=insert into Smallint_Tab values(32767,-32768,null)nulltransport_protocol=smtpnullXa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ?nullRound_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3nullIntegration_Select_All=select * from Integration_TabnullTime_Tab_Null_Update=update Time_Tab set NULL_VAL=?nullTimestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullSel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4nullInsert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null)nullSelect_Jstl_Tab1_OneRow_Query=SELECT * FROM jstl_tab1 where idNum = 1nullRand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3nullBB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullservice_eetest.vehicles=servletnullBB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullSEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ?nullBB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullJTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ?nullSEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ?nullBB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullSEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ?nullIntegration_Insert=insert into Integration_Tab values(?, ?)nullBB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullTime_Tab_Delete=delete from Time_TabnullDecimal_Query_Max=Select MAX_VAL from Decimal_TabnullSEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ?nullBB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullSEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ?nullCoffee_Proc1_Delete=Drop procedure Coffee_Proc1nullporting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURLnullSEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ?nullporting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURLnullIntegration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ?nullChar_Tab_Null_Update=update Char_Tab set NULL_VAL=?nullTinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=?nullDouble_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null)nullwebServerPort=8080nullCOFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?)nullmailuser1=nullDecimal_Tab_Insert=insert into Decimal_Tab values(999999999999999,0.000000000000001, null)nullCoffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullpassword=j2eenullLongvarbinary_Tab_Delete=delete from Longvarbinary_TabnullTimestamp_Tab_Insert=insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null)nullporting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVMnullporting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentnullSpace_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3nullQuarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3nullVarchar_Tab_Delete=delete from Varchar_TabnullTrial_String=TrialSettingnullIntegration_Sec_Tab_Delete=delete from Integration_Sec_TabnullDEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?)nullSin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3nullTinyint_Query_Null=Select NULL_VAL from Tinyint_TabnullDateTime_Long_Val2=-86400001nullUpd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1nullDateTime_Long_Val1=86400001nullDouble_Query_Max=Select MAX_VAL from Double_TabnullCOFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Select=select * from JTA_Tab1nullDEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ?nullTxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ?nullReal_Query_Null=Select NULL_VAL from Real_TabnullTxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ?nullTxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ?nullCurdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3nullTxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ?nullPi_Fn_Query=SELECT {FN PI()} FROM ctstable3nullUser_Fn_Query=SELECT {FN USER()} FROM ctstable3nullXa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' )nullUpdate_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnullXa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' )nullYear_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3nullBigint_Tab_Delete=delete from Bigint_TabnullTinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null)nullwhitebox-permissiondd=java:comp/env/eis/whitebox-permissionddnullDEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5nullDecimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=?nullDEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ?nullDbschema_Tab1_Delete=delete from ctstable2nullReal_Tab_Insert=insert into Real_Tab values(3.402E38,1.4E-37, null)nullTimestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3nullTimestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3nullCOFFEE_delete=delete from Coffee_Table where KEY_ID = ?nullCOFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ?nullBigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=?nullTxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ?nullTxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ?nullTxBean_query2=select * from TxBean_Tab2nullTxBean_query1=select * from TxBean_Tab1nullFailed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5)nullInsert2_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5)nullIntegration_Insert5=insert into Integration_Tab values(387, 1000000.0)nullFloat_Tab_Delete=delete from Float_TabnullIntegration_Insert4=insert into Integration_Tab values(30564, 25000.0)nullDEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1nullIntegration_Insert3=insert into Integration_Tab values(40, 200.50)nullIntegration_Insert2=insert into Integration_Tab values(1075, 10490.75)nullIntegration_Insert1=insert into Integration_Tab values(1000, 50000.0)nullFnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'})nulljavamail.mailbox=test1nullNumeric_Tab_Delete=delete from Numeric_TabnullReal_Query_Min=Select MIN_VAL from Real_Tabnulljavamail.protocol=imapnullDEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullDEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?)nullUcase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3nullporting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword2=cts2nullporting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnectionnullrapassword1=cts1nullSelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2nullsecuredWebServicePort=1044nullRight_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullSmallint_Tab_Delete=delete from Smallint_TabnullCoffeeTab_Delete=delete from ctstable2 where KEY_ID=?nullMax_Set_Val=10nullVarchar_Query_Null=Select NULL_VAL from Varchar_TabnullJTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ?nullCOFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?)nullNow_Fn_Query=SELECT {FN NOW()} FROM ctstable3nullBB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullSEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ?nullwhitebox-multianno=java:comp/env/eis/whitebox-multiannonullIntegration_Tab_Delete=delete from Integration_TabnullDEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?)nullRight_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3nullSelect_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ?nullRtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3nullwhitebox-notx=java:comp/env/eis/whitebox-notxnullCOFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_TablenullTimestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3nullNumeric_Query_Min=Select MIN_VAL from Numeric_TabnullDouble_Tab_Delete=delete from Double_TabnullLeft_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3nullLongvarbinary_Tab_Insert=insert into Longvarbinary_Tab values(null)nullSubstring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3nullIntegration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ?nullIntegration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ?nullDEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ?nullXa_Tab1_query=select col1 from Xa_Tab1 order by col1nullIntegration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tabnullwhitebox-xa-param=java:comp/env/eis/whitebox-xa-paramnullVarchar_Query_Name=Select COFFEE_NAME from Varchar_TabnullIntegration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ?nullCOFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullLog10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3nullIntegration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NOnullBB_Tab_Delete=delete from BB_Tabnulluser=j2eenullDEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ?nullTimestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3nullDecimal_Tab_Delete=delete from Decimal_TabnullError_Query=select * fromnullExp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3nullTinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=?nullTimestamp_Tab_Delete=delete from Timestamp_TabnullInteger_Tab_Min_Update=update Integer_Tab set MIN_VAL=?nullLtrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3nullBit_Query_Null=Select NULL_VAL from Bit_TabnullDelete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ?nullXa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?)nullCoffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end;nullTime_Tab_Brktime_Update=update Time_Tab set BRK_TIME=?nullTxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?)nulljava.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactorynullDEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ?nullwhitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_mdnullTranSize_DataTrunc=50nullTxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?)nullcofSize=5nulldb.supports.sequence=truenullLongvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=?nullTimestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3nullTimestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3nullDEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ?nullDel_Coffee_Tab=delete from ctstable2 where KEY_ID=9nullTSEIS_insert_init=1nullFloat_Query_Null=Select NULL_VAL from Float_TabnullDayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3nullSmallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=?nullInsert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?)nullCoffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1nullInsert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBit_Tab_Insert=insert into Bit_Tab values(true,false,null)nullharness.temp.directory=${ts.home}/tmpnullCOFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ?nullwhitebox-notx-param=java:comp/env/eis/whitebox-notx-paramnullplatform.mode=jakartaEEnullCOFFEE_BB_Tab_Delete=delete from BB_TabnullLongvarcharnull_Tab_Insert=insert into Longvarcharnull_Tab values(null)nullTinyint_Tab_Delete=delete from Tinyint_TabnullSQLState_BatUpdExec=S100nullTinyint_Query_Max=Select MAX_VAL from Tinyint_TabnullDEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4nullFloat_Query_Max=Select MAX_VAL from Float_TabnullDriverManager=nonullDouble_Tab_Min_Update=update Double_Tab set MIN_VAL=?nullCOFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_TablenullCoffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullCOFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ?nullDEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?)nullFloat_Tab_Max_Update=update Float_Tab set MAX_VAL=?nullJTA_Delete2=delete from JTA_Tab2 where KEY_ID = ?nullJTA_Delete1=delete from JTA_Tab1 where KEY_ID = ?nullFnschema_Tab1_Delete=delete from ctstable3nullVarbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=?nullCOFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ?nullDateTime_Str_Val2=1969-12-30 23:59:59.999nullCOFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ?nullDateTime_Str_Val1=1970-01-02 00:00:00.001nullCOFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ?nullDouble_Query_Null=Select NULL_VAL from Double_TabnullCOFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ?nullCOFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ?nullCOFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ?nullDEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ?nullDouble_Tab_Null_Update=update Double_Tab set NULL_VAL=?nullCOFFEE_delete_all=delete from Coffee_TablenullInsert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'})nullBB_Insert1=insert into BB_Tab values(?, ?, ?)nullSEC_Insert1=insert into SEC_Tab1 values(?, ?, ?)nullDecimal_Query_Null=Select NULL_VAL from Decimal_TabnullTimestamp_Query_Null=Select NULL_VAL from Timestamp_TabnullDbschema_Tab2_Insert=insert into ctstable1 values(?, ?)nullRadians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3nullCoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2'nulltestName=testWorkManagerImplementaionnullCoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3'nullCOFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ?nullCoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1'nullAtan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3nullCoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=?nullDEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ?nullBatchUpdate_Delete=delete from ctstable2nullReal_Tab_Null_Update=update Real_Tab set NULL_VAL=?nullBit_Query_Min=Select MIN_VAL from Bit_TabnullLcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3nullIns_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5)nullSelect_NoRows_Query=SELECT * FROM jstl_tab1 WHERE idNum = -9999nullTimestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3nullDEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2nullTSEIS_insert2=3nullVarchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=?nullIndex_DataTrunc=1nullTSEIS_insert1=2nullSelect_Jstl_Tab1_Using_Param_Query=SELECT * FROM jstl_tab1 WHERE idNum = ?nullCoffee_SelTab=select PRICE from ctstable2 where KEY_ID>4nullCOFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_TablenullSmallint_Query_Min=Select MIN_VAL from Smallint_TabnullTruncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3nullUpdate_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=nullnullLongvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_TabnullUpdate_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=nullnullXa_Tab1_Delete=delete from Xa_Tab1nullimap.port=143nullParam_DataTrunc=truenullDecimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=?nullCeiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3nullCOFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ?nullJTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?)nullIfnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3nullSelect_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ?nullLongvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_TabnullLongvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tabnullrauser2=cts2nullLongvarchar_Tab_Insert=insert into Longvarchar_Tab values('Test Coffee')nullrauser1=cts1nullBit_Tab_Delete=delete from Bit_TabnullSelect_Jstl_Tab2_Using_Param_Query=SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ?nullSoundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3nullCoffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2nullporting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullDelete_Jstl_Tab3_AllRows_Query=DELETE FROM jstl_tab3nullporting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContextnullCos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3nullLongvarcharnull_Tab_Delete=delete from Longvarcharnull_TabnullTimestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3nullInsert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null)nullCOFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ?nullBatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=?nullCOFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?)nullptable=ctstable1nullwhitebox-mdcomplete=java:comp/env/eis/whitebox-mdcompletenullInteger_Query_Min=Select MIN_VAL from Integer_Tabnullfinder=ctsnullDegrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3nullHour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3nullBinary_Query_Val=Select BINARY_VAL from Binary_TabnullXa_Tab2_Delete=delete from Xa_Tab2nullNumeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=?nullBatchInsert_String=insert into ctstable2 values(?,?,?,?)nullJTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ?nullReal_Tab_Min_Update=update Real_Tab set MIN_VAL=?nullDayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3nullJTA_Tab2_Select=select * from JTA_Tab2nullBigint_Query_Min=Select MIN_VAL from Bigint_TabnullDEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullwhitebox-tx-param=java:comp/env/eis/whitebox-tx-paramnullCOFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ?nullReal_Query_Max=Select MAX_VAL from Real_TabnullSimple_Select_Query=SELECT * FROM jstl_tab1nullBigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=?nullCOFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ?nullInsert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'})nullauthpassword=javajoenullJDBCLogstream_Message=Hello WorldnullFloor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3nullInsert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?)nullDEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ?nullInsert4_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5)nullDbschema_Tab2_Delete=delete from ctstable1nullTxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullCOFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ?nullDatabase_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3nullTxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ?nullChar_Tab_Name_Update=update Char_Tab set COFFEE_NAME=?nullTxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?)nullTimestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3nullCoffee_DelTab=delete from ctstable2 where KEY_ID=2nullRef_Nano_Val2=1000000nullNumeric_Query_Max=Select MAX_VAL from Numeric_Tabnulljdbc.db=derbynullFnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100)nullRef_Milli_Val=86400000nullVarbinary_Tab_Insert=insert into Varbinary_Tab values(null)nullMonth_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3nullInsert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3nullTxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ?nullTxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ?nullIntegration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ?nullvehicle_archive_name=xa_workmgt_servlet_vehiclenullVarbinary_Query_Val=Select VARBINARY_VAL from Varbinary_TabnullRepeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3nullCoffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9nullDate_Query_Mfg=Select MFG_DATE from Date_TabnullDate_Query_Null=Select NULL_VAL from Date_Tabnullharness.log.delayseconds=0nullCOFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ?nullJTA_Tab1_Delete=delete from JTA_Tab1nullUpdate_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=nullnulljavamail.password=nulljavamail.username=nullInteger_Tab_Max_Update=update Integer_Tab set MAX_VAL=?nullSelect_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2nullReplace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3nullLongvarchar_Tab_Delete=delete from Longvarchar_TabnullBit_Tab_Min_Update=update Bit_Tab set MIN_VAL=?nullDbschema_Concur_Insert=insert into concurrencetable values(?, ?)nullDate_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null)nullTxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullSqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3nullRef_Nano_Val=999999999nullFull_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nulljavamail.server=nullCOFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ?nullCOFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ?nullInvalid_SQL_Query=This Will Fail on Any RDBMS I Hope!nullLog_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3nulldb2=db1OnlyUsedIfDriverManagerIsYesnulldb1=db1OnlyUsedIfDriverManagerIsYesnullJTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ?nullSmallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=?nullJTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ?nullCOFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?)nullSelect_Jstl_Tab1_By_Id_Query=SELECT * FROM jstl_tab1 ORDER BY idNumnullReason_BatUpdExec=MessagenullInteger_Query_Null=Select NULL_VAL from Integer_TabnullMod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3nullBB_Delete1=delete from BB_Tab where KEY_ID = ?nullSEC_Delete1=delete from SEC_Tab1 where KEY_ID = ?nullTimestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3nullBoolean_Tab_Insert=insert into Boolean_Tab values(true,false,null)nullTxBean_Tab1_Delete=delete from TxBean_Tab1nullMonthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3nullorg.omg.CORBA.ORBClass=foonullInteger_Tab_Null_Update=update Integer_Tab set NULL_VAL=?nullUpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_ProcnullAsin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3nullBinary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=?nullChar_Query_Null=Select NULL_VAL from Char_TabnullDouble_Tab_Max_Update=update Double_Tab set MAX_VAL=?nullauthuser=javajoenullIntegration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ?nullInteger_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null)nullCoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=?nullwhitebox-mixedmode=java:comp/env/eis/whitebox-mixedmodenullwork.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWorknullTimestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3nullAscii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3nullChar_Query_Name=Select COFFEE_NAME from Char_TabnullIntialValue_BatUpdExec={1,1,1}nullCOFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ?nullChar_Tab_Insert=insert into Char_Tab values('Test Coffee', null)nullBit_Query_Max=Select MAX_VAL from Bit_TabnullFnschema_Tab2_Delete=delete from ctstable4nullConcat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3nullVarbinary_Tab_Delete=delete from Varbinary_Tabnulldb.dml.file=derby/derby.dml.sqlnullBinary_Tab_Insert=insert into Binary_Tab values(null)nullPower_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3nullDataSize_DataTrunc=100nullDEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ?nullTxBean_Tab2_Delete=delete from TxBean_Tab2nullXa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' )nullXa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' )nullIntegration_Delete_Account=delete from Integration_Tab where ACCOUNT = ?nullSelect_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ?nullharness.host=localhostnullCOFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ?nullLongvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=?nullDTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1)nullSmallint_Query_Max=Select MAX_VAL from Smallint_TabnullTimestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=?nullXa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' )nullCoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=?nullsigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.namingnullVendorCode_BatUpdExec=10nullCOFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ?nullDecimal_Query_Min=Select MIN_VAL from Decimal_Tabnullts_home=/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/jakartaeetck/nullTimestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3nullCoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=?nullporting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullwebServerHost=localhostnullDbschema_Concur_Delete=delete from concurrencetablenullDate_Tab_Delete=delete from Date_Tabnullporting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdminnullSecond_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3nullCOFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullvarbinarySize=48nullbinarySize=24nullDayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3nullConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?)nullInteger_Query_Max=Select MAX_VAL from Integer_TabnullMinute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3nullRead_DataTrunc=truenullJTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?)nullharness.log.traceflag=truenullBigint_Query_Max=Select MAX_VAL from Bigint_TabnullTimestamp_Query_In=Select IN_TIME from Timestamp_TabnullDecimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=?nullwhitebox-xa=java:comp/env/eis/whitebox-xanullDouble_Query_Min=Select MIN_VAL from Double_TabnullBigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=?nullIntegration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? )nullIntegration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=?nullDelete_AllRows_Query=DELETE FROM jstl_tab2nullDifference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3nullCoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1')nullAtan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3nullTan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3nullDelete_NoRows_Query=DELETE FROM jstl_tab2 WHERE idNum = -9999nullTimestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3nullNumeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=?nullDEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ?nullCOFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?)nullDEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ?nullInteger_Tab_Delete=delete from Integer_Tabnulliofile=MailIOFile.txtnullXa_Tab2_query=select col1 from Xa_Tab2 order by col1nullReal_Tab_Max_Update=update Real_Tab set MAX_VAL=?nullTimestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3nulllongvarbinarySize=50nullLocate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3nullCOFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullInsert3_Row_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5)nullDEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ?nullBit_Tab_Null_Update=update Bit_Tab set NULL_VAL=?nullDate_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=?nullTimestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3nullChar_Tab_Delete=delete from Char_Tabnullvehicle=servletnullDEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ?nullBinary_Tab_Delete=delete from Binary_TabnullNumeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=?nullTime_Query_Null=Select NULL_VAL from Time_TabnullTimestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=?nullftable=ctstable2nullvariable.mapper=org.glassfish.expressly.lang.VariableMapperImplnulllog.file.location=${vi.domain}/logsnullTinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=?nullcofTypeSize=5nullUpdate_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=nullnullUpdate_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=nullnullLeft_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL}nullTime_Tab_Insert=insert into Time_Tab values({t '12:59:59'}, null)nullCOFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ?nulltest_classname=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1nullFloat_Tab_Null_Update=update Float_Tab set NULL_VAL=?nullDEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ?nullws_wait=5nullTxEBean_Delete=delete from TxEBean_TabnullCOFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ?nulljstl.db.password=${derby.passwd}nullSign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3nullTime_Query_Brk=Select BRK_TIME from Time_TabnullEscape_Seq_Query=select count(*) from ctstable2 where cof_name like '%-%' { escape '\' }nullwhitebox-tx=java:comp/env/eis/whitebox-txnullConnectorTable_Delete=delete from Connector_TabnullSelect_Jstl_Tab2_NullParam_Query=SELECT * FROM jstl_tab2 WHERE rank = ?nullDelete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ?nulluser1=cts1nullVarchar_Tab_Insert=insert into Varchar_Tab values('Test Coffee',null)nullTxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ?nulljms_timeout=10000nullTxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ?nullTxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ?nullTxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ?nullDate_Tab_Null_Update=update Date_Tab set NULL_VAL=?nullIntegration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?)nullTxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ?nullJTA_Tab2_Delete=delete from JTA_Tab2null--- End Property Listing ---null -11-19-2024 18:02:09: SVR-TRACE: in ServiceEETest.run(), this URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: VehicleClient URL is: file:/home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/domains/domain1/applications/xa_workmgt_servlet_vehicle/xa_workmgt_servlet_vehicle_web_war/WEB-INF/classes/com/sun/ts/tests/common/vehicle/VehicleClient.class -11-19-2024 18:02:09: SVR-TRACE: in custom vehicle so call on EETest. -11-19-2024 18:02:09: SVR-TRACE: *** in EETest.run(argv,p) -11-19-2024 18:02:09: SVR-TRACE: TESTCLASS=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testClass=com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ** IN getRunMethod: testname=testWorkManagerImplementaion -11-19-2024 18:02:09: SVR-TRACE: ** GOT RUN METHOD! -11-19-2024 18:02:09: SVR-TRACE: **runmethod=testWorkManagerImplementaion -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO GET SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: No setupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for testcase specific setup method: testWorkManagerImplementaion_setup -11-19-2024 18:02:09: SVR-TRACE: getSetupMethod - checking for default class specific setup method -11-19-2024 18:02:09: SVR-TRACE: GOT SETUP METHOD: setup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: No cleanupMethod annotation present -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for testcase specific cleanup method: testWorkManagerImplementaion_cleanup -11-19-2024 18:02:09: SVR-TRACE: getCleanupMethod - checking for default class specific cleanup method -11-19-2024 18:02:09: SVR-TRACE: GOT CLEANUP METHOD: cleanup for com.sun.ts.tests.connector.xa.workmgt.workmgtClient1 -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE SETUP METHOD! -11-19-2024 18:02:09: SVR: Using: java:comp/env/eis/whitebox-xa -11-19-2024 18:02:09: SVR-TRACE: INVOKED SETUP METHOD! -11-19-2024 18:02:09: SVR-TRACE: ABOUT TO INVOKE EETEST RUN METHOD! -11-19-2024 18:02:09: SVR: Performing callback verification... -11-19-2024 18:02:09: SVR: Got RA log. -11-19-2024 18:02:09: SVR-TRACE: Got connection. -11-19-2024 18:02:09: SVR-TRACE: [LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(false), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, LocalTxManagedConnectionFactory setResourceAdapter 1, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, WorkManager value returned 0, Rogue work throws WorkCompletedException, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, NestWork.constructor, Schedule Work Listener Called, Schedule Work Called, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, XAResourceAdapterImpl Constructor , WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkManager value returned 2, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 1, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, XAManagedConnectionFactory setResourceAdapter 1, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, cbTestAllCallbacksAndPrin: callbacks handled., WorkListenerImpl.workCompleted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, cbTestAllCallbacksNullPrin: callbacks handled., WorkListenerImpl.workStarted, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, setupSecurityContext() called with non-null callbackHandler, WorkListenerImpl.workStarted, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, WorkListenerImpl.workStarted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext() called with non-null callbackHandler, cbTestCPCandGPC: callbacks handled., setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=2, notifications test: workStarted(): count=3, notifications test: workCompleted(): count=1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, notifications test: workCompleted(): count=5, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceException(str) passed, ResourceAllocationException(str, throwable) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, SecurityException(null) passed, ResourceException.getErrorCode() passed, SecurityException(str) passed, SecurityException(str, str) passed, ResourceException(throwable) passed, SecurityException(throwable) passed, ResourceException(str, someThrowable) passed, SecurityException(str, throwable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, SharingViolationException(null) passed, LocalTransactionException(str) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, SharingViolationException(throwable) passed, LocalTransactionException(str, throwable) passed, SharingViolationException(str, throwable) passed, ResourceAdapterInternalException(null) passed, UnavailableException(null) passed, ResourceAdapterInternalException(str) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, UnavailableException(null) passed, EISSystemException(str) passed, UnavailableException(str) passed, EISSystemException(str, str) passed, UnavailableException(str, str) passed, EISSystemException(throwable) passed, UnavailableException(throwable) passed, EISSystemException(str, throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, InvalidPropertyException(null) passed, WorkException(str) passed, InvalidPropertyException(str) passed, WorkException(str, str) passed, InvalidPropertyException(str, str) passed, WorkException(throwable) passed, InvalidPropertyException(throwable) passed, WorkException(str, throwable) passed, InvalidPropertyException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, New Timer Provided by BootstrapContext, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, XATerminator is not null, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, Xid Committed, RetryableWorkRejectedException(throwable) passed, TransactionContext supported by Server., SecurityContext supported by Server., RetryableWorkRejectedException(str, throwable) passed, HintsContext supported by Server., HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, WorkListenerImpl.workCompleted, Schedule Work Listener Called, Schedule Work Called, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandNullPrin: Case-1 security callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, NoTxManagedConnectionFactory setResourceAdapter 1, cbTestAllCallbacksAndPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestAllCallbacksNullPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPVC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandGPC: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, setRAName called with raname=MDCompleteRA, MDCompleteWorkManager threw WorkContextErrorCodes.UNSUPPORTED_CONTEXT_TYPE, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, Nested Work and Nested Security Context worked., NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, NestWork.run, NestWork.constructor, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., TSNestedSecurityContext expected PVC failure and got it., NestWork.run, MDCompleteWorkManager threw WorkContextErrorCodes.DUPLICATE_CONTEXTS, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, setRAName called with raname=AnnotatedResourceAdapterImpl, AnnotatedResourceAdapterImpl.start called, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, AnnoWorkManager Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, TransactionContext Work Object Submitted, anno based NestedWorkXid1 child context submitted, anno based NestedWorkXid1 parent context submitted, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, PMDResourceAdapterImpl overRide=VAL_FROM_DD, setRAName called with raname=PartialMDResourceAdapter, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, MAResourceAdapterImpl Started 1, LocalTxResourceAdapterImpl Constructor , LocalTxResourceAdapter.setRAName, LocalTxResourceAdapter Started 1, LocalTxResourceAdapter BootstrapContext Not Null , LocalTxResourceAdapter WorkManager Not Null , wm Does NOT support DistributableWorkManager, LocalTxResourceAdapterImpl ; calling setUseSecurityMapping(true), Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 1, NestWork.run, WorkListenerImpl.workCompleted, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, LocalTxManagedConnectionFactory setResourceAdapter 1, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, NoTxResourceAdapterImpl Constructor, NoTxResourceAdapter.setRAName, NoTxResourceAdapter Started 1, NoTxResourceAdapter BootstrapContext Not Null , NoTxResourceAdapter WorkManager Not Null , NoTxResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkManager value returned 1, WorkListenerImpl.workStarted, NestWork.constructor, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, NestWork.run, WorkListenerImpl.workCompleted, NestWork.run, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workCompleted, WorkXid Submitted, NoTxManagedConnectionFactory setResourceAdapter 1, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, XAResourceAdapterImpl Constructor , XAResourceAdapter.setRAName, XAResourceAdapter Started 1, XAResourceAdapter BootstrapContext Not Null , XAResourceAdapter WorkManager Not Null , XAResourceAdapter - association exists between RA and work, Work Object Submitted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, NestWork.run, WorkListenerImpl.workCompleted, WorkListenerImpl.workAccepted, WorkListenerImpl.workStarted, NestWork.constructor, WorkManager value returned 0, NestWork.run, Rogue work throws WorkCompletedException, WorkListenerImpl.workAccepted, DistributedWork Object Submitted, WorkManagers DistributedWork value returned 0, Schedule Work Listener Called, Schedule Work Called, WorkListenerImpl.workStarted, NestWork.constructor, WorkListenerImpl.workCompleted, NestWork.run, WorkListenerImpl.workCompleted, WorkXid Submitted, WorkException.TX_CONCURRENT_WORK_DISALLOWED caught, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, XAManagedConnectionFactory setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbTestGPCandCPCFail: callbacks are NOT handled - as expected., Context setup completed, WorkListenerImpl.workCompleted, enterred testSecurityInflow(), WorkListenerImpl.workAccepted for:notifications test, WorkListenerImpl.workStarted, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, cbEISTestCPCandPrin: callbacks handled., Context setup completed, WorkListenerImpl.workCompleted, enterred submitSICWork(), setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, submitted work with SIC Listener, SUCCESS: WorkContextProvider causes expected WorkRejectedException, notifications test: workAccepted(): count=1, notifications test: workStarted(): count=2, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., notifications test: contextSetupComplete(): count=3, notifications test: workCompleted(): count=4, Work Object Submitted, WorkListenerImpl.workAccepted, WorkAndAssocImpl setResourceAdapter 1, WorkListenerImpl.workStarted, LocalTx - association exists between RA and work, WorkAndAssocImpl.run, WorkListenerImpl.workCompleted, NotSupportedException(null) passed, NotSupportedException(str) passed, NotSupportedException(str, str) passed, NotSupportedException(throwable) passed, NotSupportedException(str, throwable) passed, ResourceException(null) passed, ResourceException(str) passed, ResourceException.setErrorCode(str) passed, ResourceException(str, str) passed, ResourceException.getErrorCode() passed, ResourceException(throwable) passed, ResourceException(str, someThrowable) passed, ResourceException.getMessage() passed, LocalTransactionException(null) passed, LocalTransactionException(str) passed, LocalTransactionException(str, str) passed, LocalTransactionException(throwable) passed, LocalTransactionException(str, throwable) passed, ResourceAdapterInternalException(null) passed, ResourceAdapterInternalException(str) passed, ResourceAdapterInternalException(str, str) passed, ResourceAdapterInternalException(throwable) passed, ResourceAdapterInternalException(str, throwable) passed, ResourceAllocationException(null) passed, ResourceAllocationException(str) passed, ResourceAllocationException(str, str) passed, ResourceAllocationException(throwable) passed, ResourceAllocationException(str, throwable) passed, SecurityException(null) passed, SecurityException(str) passed, SecurityException(str, str) passed, SecurityException(throwable) passed, SecurityException(str, throwable) passed, SharingViolationException(null) passed, SharingViolationException(str) passed, SharingViolationException(str, str) passed, SharingViolationException(throwable) passed, SharingViolationException(str, throwable) passed, UnavailableException(null) passed, UnavailableException(str) passed, UnavailableException(str, str) passed, UnavailableException(throwable) passed, UnavailableException(str, throwable) passed, WorkException(null) passed, WorkException(str) passed, WorkException(str, str) passed, WorkException(throwable) passed, WorkException(str, throwable) passed, WorkCompletedException(null) passed, WorkCompletedException(str) passed, WorkCompletedException(str, str) passed, WorkCompletedException(throwable) passed, WorkCompletedException(str, throwable) passed, WorkRejectedException(null) passed, WorkRejectedException(str) passed, WorkRejectedException(str, str) passed, WorkRejectedException(throwable) passed, WorkRejectedException(str, throwable) passed, EISSystemException(null) passed, EISSystemException(str) passed, EISSystemException(str, str) passed, EISSystemException(throwable) passed, EISSystemException(str, throwable) passed, InvalidPropertyException(null) passed, InvalidPropertyException(str) passed, InvalidPropertyException(str, str) passed, InvalidPropertyException(throwable) passed, InvalidPropertyException(str, throwable) passed, InvalidPropertyException.setInvalidPropertyDescriptors() passed, InvalidPropertyException.getInvalidPropertyDescriptors() passed, ApplicationServerInternalException(null) passed, ApplicationServerInternalException(str) passed, ApplicationServerInternalException(str, str) passed, ApplicationServerInternalException(throwable) passed, ApplicationServerInternalException(str, throwable) passed, CommException(null) passed, CommException(str) passed, CommException(str, str) passed, CommException(throwable) passed, CommException(str, throwable) passed, IllegalStateException(null) passed, IllegalStateException(str) passed, IllegalStateException(str, str) passed, IllegalStateException(throwable) passed, IllegalStateException(str, throwable) passed, RetryableUnavailableException(null) passed, RetryableUnavailableException(str) passed, RetryableUnavailableException(str, str) passed, RetryableUnavailableException(throwable) passed, RetryableUnavailableException(str, throwable) passed, RetryableWorkRejectedException(null) passed, RetryableWorkRejectedException(str) passed, RetryableWorkRejectedException(str, str) passed, RetryableWorkRejectedException(throwable) passed, RetryableWorkRejectedException(str, throwable) passed, HintsContext() passed, HintsContext.setName() and HintsContext.getName() passed., HintsContext.setDescription() and HintsContext.getDescription() passed., HintsContext.setHints() and HintsContext.getHints() passed., New Timer Provided by BootstrapContext, XATerminator is not null, Xid Committed, TransactionContext supported by Server., SecurityContext supported by Server., HintsContext supported by Server., getTransactionSynchronizationRegistry supported by Server, TSR Lookup Successful, AnnoManagedConnectionFactory factoryName=AnnoManagedConnectionFactory, AnnotatedResourceAdapterImpl.setSetterMethodVal=NONDEFAULT, testRAAccessibility: accessibility test, MDCompleteMCF constructor, MDCompleteMCF setResourceAdapter 1, MDCompleteMCF.getTransactionSupport called, PMDManagedConnectionFactory factoryname=PMDManagedConnectionFactory, PMDManagedConnectionFactory noDefaultValue=NO_DEFAULT_VAL, LocalTxManagedConnectionFactory setResourceAdapter 1, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1, LocalTxManagedConnectionFactory setResourceAdapter 1, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, LocalTxActivationSpec setResourceAdapter 1, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, LocalTxMessageListener.workStarted, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, mdb not executed with proper SIC principal, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, EJBException thrown by Required, AppException thrown by Required, LocalTx MDB2 delivery is transacted, LocalTxActivationSpec setResourceAdapter 1, LocalTxMessageListener.workAccepted, LocalTxMessageListener.workStarted, LocalTxActivationSpec setResourceAdapter 1, LocalTx MessageEndpointFactory is Unique, LocalTx MessageEndpointFactory equals implemented correctly, setupSecurityContext() called with non-null callbackHandler, setupSecurityContext() called with valid executionSubject, setupSecurityContext() called with valid serviceSubject, setupSecurityContext callbackhandler supports required callback types., Context setup completed, LocalTx Unique MessageEndpoint returned, LocalTx MessageEndpoint interface implemented, LocalTx TSMessageListener interface implemented, LocalTx Message To MDB, LocalTxMessageXAResource1.start, LocalTxMessageXAResource1.end, LocalTxMessageXAResource1.commit, LocalTx MDB2 Transacted Message To MDB, mdb not executed with proper SIC principal, EJBException thrown by Required, LocalTx Non Transacted Message To MDB1, EJBException thrown by NotSupported, LocalTx MDB2 Transacted Message1, LocalTx MDB2 Transacted Message2, LocalTx MDB2 Transacted Message3, LocalTxMessageListener committed Xid, AppException thrown by NotSupported, LocalTx MDB1 delivery is not transacted, AppException thrown by Required, LocalTx MDB2 delivery is transacted, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, Connection.getMetaData() passed, ManagedConnectionMetaData.getEISProductName() passed, ManagedConnectionMetaData.getEISProductVersion() passed, ManagedConnectionMetaData.getMaxConnections() passed, ManagedConnectionMetaData.getUserName() passed, ManagedConnection.getLogWriter() passed, ManagedConnection.getMetaData() passed, ManagedConnection.getLocalTransaction() passed, NoTxManagedConnectionFactory setResourceAdapter 1, XAManagedConnectionFactory.setTSRValue, XAManagedConnectionFactory setResourceAdapter 1] -11-19-2024 18:02:09: Test status from a servlet: 1:Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: SVR: Methods called correctly -11-19-2024 18:02:09: SVR: Performing end to end verification... -11-19-2024 18:02:09: SVR-TRACE: DBSupport.insertIntoTable(con) -11-19-2024 18:02:09: SVR: Exception inserting into table. -11-19-2024 18:02:09: SVR-ERROR: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null -11-19-2024 18:02:09: Test: returning from running in a servlet vehicle -11-19-2024 18:02:09: SVR-ERROR: Exception at: -11-19-2024 18:02:09: TRACE: SLEPT FOR: 0 -11-19-2024 18:02:09: SVR-ERROR: java.lang.Exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:156) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at com.sun.ts.lib.harness.EETest.run(EETest.java:602) - at com.sun.ts.lib.harness.ServiceEETest.run(ServiceEETest.java:127) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.runTest(ServletVehicle.java:124) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doGet(ServletVehicle.java:96) - at com.sun.ts.tests.common.vehicle.servlet.ServletVehicle.doPost(ServletVehicle.java:116) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1376) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:217) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:120) - at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611) - at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:550) - at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:75) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:121) - at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:295) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:188) - at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:453) - at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:145) - at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:174) - at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:153) - at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:196) - at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:88) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:246) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:178) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:118) - at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:96) - at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:51) - at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:510) - at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:82) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:83) - at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:101) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:535) - at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:515) - at java.base/java.lang.Thread.run(Thread.java:840) -Caused by: java.lang.NullPointerException: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - at com.sun.ts.tests.common.connector.whitebox.TSEISConnection.insert(TSEISConnection.java:53) - at com.sun.ts.tests.connector.util.DBSupport.insertIntoTable(DBSupport.java:59) - at com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.testWorkManagerImplementaion(workmgtClient1.java:152) - ... 38 more - -11-19-2024 18:02:09: SVR: Cleanup -11-19-2024 18:02:09: SVR: Test running in servlet vehicle failed -[ERROR] Tests run: 8, Failures: 0, Errors: 8, Skipped: 0, Time elapsed: 4.888 s <<< FAILURE! - in com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest.testForUnsharedTimer Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest.testNestedWork Time elapsed: 0.013 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest.testScheduleWork Time elapsed: 0.023 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest.testScheduleWorkListener Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest.testUnknownWorkDuration Time elapsed: 0.019 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest.testWorkCompletedException Time elapsed: 0.017 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest.testWorkListenerImplementation Time elapsed: 0.016 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -[ERROR] com.sun.ts.tests.connector.xa.workmgt.workmgtClient1ServletTest.testWorkManagerImplementaion Time elapsed: 0.014 s <<< ERROR! -java.lang.Exception: Test case throws exception: Cannot invoke "com.sun.ts.tests.common.connector.whitebox.TSConnection.insert(String, String)" because "con" is null - -Stopping container using command: [/usr/lib/jvm/java-17-openjdk-amd64/bin/java, -jar, /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/glassfish7/glassfish/modules/admin-cli.jar, stop-domain, -t] -Waiting finished after 100 ms. -[INFO] -[INFO] Results: -[INFO] -[ERROR] Errors:  -[ERROR]  annotationClientJspTest » Deployment Could not deploy annotations_jsp_vehicle.... -[ERROR]  annotationClientServletTest.testConnectorAnnotation » Test case throws except... -[ERROR]  connectionClient1JspTest.testGetConnection1 » Test case throws exception: Can... -[ERROR]  connectionClient1ServletTest.testGetConnection1 » Test case throws exception:... -[ERROR]  lifecycleClient1JspTest.testAssociationMCFandRA » Test case throws exception:... -[ERROR]  lifecycleClient1JspTest.testBootstrapforNull » Test case throws exception: Ca... -[ERROR]  lifecycleClient1JspTest.testInstantiationOfRA » Test case throws exception: C... -[ERROR]  lifecycleClient1JspTest.testMCFcalledOnce » Test case throws exception: Canno... -[ERROR]  lifecycleClient1JspTest.testRASharability » Test case throws exception: Canno... -[ERROR]  lifecycleClient1JspTest.testRAforJavaBean » Test case throws exception: Canno... -[ERROR]  lifecycleClient1ServletTest.testAssociationMCFandRA » Test case throws except... -[ERROR]  lifecycleClient1ServletTest.testBootstrapforNull » Test case throws exception... -[ERROR]  lifecycleClient1ServletTest.testInstantiationOfRA » Test case throws exceptio... -[ERROR]  lifecycleClient1ServletTest.testMCFcalledOnce » Test case throws exception: C... -[ERROR]  lifecycleClient1ServletTest.testRASharability » Test case throws exception: C... -[ERROR]  lifecycleClient1ServletTest.testRAforJavaBean » Test case throws exception: C... -[ERROR]  MDBClientJspTest » Deployment Could not deploy msginflow_mdb_jca.ear -[ERROR]  MDBClientServletTest » Deployment Could not deploy msginflow_mdb_jca.ear -[ERROR]  securityClient1JspTest.testAppEISSignon » Test case throws exception: Cannot ... -[ERROR]  securityClient1JspTest.testComponentManaged » Test case throws exception: Can... -[ERROR]  securityClient1JspTest.testConnManagerAllocateConnection » Test case throws e... -[ERROR]  securityClient1JspTest.testContainerManaged » Test case throws exception: Can... -[ERROR]  securityClient1ServletTest.testAppEISSignon » Test case throws exception: Can... -[ERROR]  securityClient1ServletTest.testComponentManaged » Test case throws exception:... -[ERROR]  securityClient1ServletTest.testConnManagerAllocateConnection » Test case thro... -[ERROR]  securityClient1ServletTest.testContainerManaged » Test case throws exception:... -[ERROR]  transinflowClient1JspTest » Deployment Could not deploy localTx_transinflow_js... -[ERROR]  transinflowClient1ServletTest.testConcurrentWorkXid » Test case throws except... -[ERROR]  transinflowClient1ServletTest.testGetTransactionSupport » Test case throws ex... -[ERROR]  transinflowClient1ServletTest.testSetResourceAdapterMethod » Test case throws... -[ERROR]  transinflowClient1ServletTest.testXATerminator » Test case throws exception: ... -[ERROR]  workmgtClient1JspTest.testForUnsharedTimer » Test case throws exception: Cann... -[ERROR]  workmgtClient1JspTest.testNestedWork » Test case throws exception: Cannot inv... -[ERROR]  workmgtClient1JspTest.testScheduleWork » Test case throws exception: Cannot i... -[ERROR]  workmgtClient1JspTest.testScheduleWorkListener » Test case throws exception: ... -[ERROR]  workmgtClient1JspTest.testUnknownWorkDuration » Test case throws exception: C... -[ERROR]  workmgtClient1JspTest.testWorkCompletedException » Test case throws exception... -[ERROR]  workmgtClient1JspTest.testWorkListenerImplementation » Test case throws excep... -[ERROR]  workmgtClient1JspTest.testWorkManagerImplementaion » Test case throws excepti... -[ERROR]  workmgtClient1ServletTest.testForUnsharedTimer » Test case throws exception: ... -[ERROR]  workmgtClient1ServletTest.testNestedWork » Test case throws exception: Cannot... -[ERROR]  workmgtClient1ServletTest.testScheduleWork » Test case throws exception: Cann... -[ERROR]  workmgtClient1ServletTest.testScheduleWorkListener » Test case throws excepti... -[ERROR]  workmgtClient1ServletTest.testUnknownWorkDuration » Test case throws exceptio... -[ERROR]  workmgtClient1ServletTest.testWorkCompletedException » Test case throws excep... -[ERROR]  workmgtClient1ServletTest.testWorkListenerImplementation » Test case throws e... -[ERROR]  workmgtClient1ServletTest.testWorkManagerImplementaion » Test case throws exc... -[ERROR]  connectionClient1JspTest.testGetConnection1 » Test case throws exception: Can... -[ERROR]  connectionClient1ServletTest.testGetConnection1 » Test case throws exception:... -[ERROR]  lifecycleClient1JspTest.testAssociationMCFandRA » Test case throws exception:... -[ERROR]  lifecycleClient1JspTest.testBootstrapforNull » Test case throws exception: Ca... -[ERROR]  lifecycleClient1JspTest.testInstantiationOfRA » Test case throws exception: C... -[ERROR]  lifecycleClient1JspTest.testMCFcalledOnce » Test case throws exception: Canno... -[ERROR]  lifecycleClient1JspTest.testRASharability » Test case throws exception: Canno... -[ERROR]  lifecycleClient1JspTest.testRAforJavaBean » Test case throws exception: Canno... -[ERROR]  lifecycleClient1ServletTest.testAssociationMCFandRA » Test case throws except... -[ERROR]  lifecycleClient1ServletTest.testBootstrapforNull » Test case throws exception... -[ERROR]  lifecycleClient1ServletTest.testInstantiationOfRA » Test case throws exceptio... -[ERROR]  lifecycleClient1ServletTest.testMCFcalledOnce » Test case throws exception: C... -[ERROR]  lifecycleClient1ServletTest.testRASharability » Test case throws exception: C... -[ERROR]  lifecycleClient1ServletTest.testRAforJavaBean » Test case throws exception: C... -[ERROR]  securityClient1JspTest.testAppEISSignon » Test case throws exception: Cannot ... -[ERROR]  securityClient1JspTest.testComponentManaged » Test case throws exception: Can... -[ERROR]  securityClient1JspTest.testConnManagerAllocateConnection » Test case throws e... -[ERROR]  securityClient1JspTest.testContainerManaged » Test case throws exception: Can... -[ERROR]  securityClient1ServletTest.testConnManagerAllocateConnection » Test case thro... -[ERROR]  securityClient1ServletTest.testContainerManaged » Test case throws exception:... -[ERROR]  workmgtClient1JspTest.testForUnsharedTimer » Test case throws exception: Cann... -[ERROR]  workmgtClient1JspTest.testNestedWork » Test case throws exception: Cannot inv... -[ERROR]  workmgtClient1JspTest.testScheduleWork » Test case throws exception: Cannot i... -[ERROR]  workmgtClient1JspTest.testScheduleWorkListener » Test case throws exception: ... -[ERROR]  workmgtClient1JspTest.testUnknownWorkDuration » Test case throws exception: C... -[ERROR]  workmgtClient1JspTest.testWorkCompletedException » Test case throws exception... -[ERROR]  workmgtClient1JspTest.testWorkListenerImplementation » Test case throws excep... -[ERROR]  workmgtClient1JspTest.testWorkManagerImplementaion » Test case throws excepti... -[ERROR]  workmgtClient1ServletTest.testForUnsharedTimer » Test case throws exception: ... -[ERROR]  workmgtClient1ServletTest.testNestedWork » Test case throws exception: Cannot... -[ERROR]  workmgtClient1ServletTest.testScheduleWork » Test case throws exception: Cann... -[ERROR]  workmgtClient1ServletTest.testScheduleWorkListener » Test case throws excepti... -[ERROR]  workmgtClient1ServletTest.testUnknownWorkDuration » Test case throws exceptio... -[ERROR]  workmgtClient1ServletTest.testWorkCompletedException » Test case throws excep... -[ERROR]  workmgtClient1ServletTest.testWorkListenerImplementation » Test case throws e... -[ERROR]  workmgtClient1ServletTest.testWorkManagerImplementaion » Test case throws exc... -[ERROR]  ClientJspTest.testValidateCustomPerm » Test case throws exception: Cannot inv... -[ERROR]  ClientJspTest.testValidateLocalPermsInvalidName » Test case throws exception:... -[ERROR]  ClientJspTest.testValidateMissingPermFails » Test case throws exception: Cann... -[ERROR]  ClientJspTest.testValidateRequiredPermSet » Test case throws exception: Canno... -[ERROR]  ClientJspTest.testValidateRestrictedLocalPerm » Test case throws exception: C... -[ERROR]  ClientServletTest.testValidateCustomPerm » Test case throws exception: Cannot... -[ERROR]  ClientServletTest.testValidateLocalPermsInvalidName » Test case throws except... -[ERROR]  ClientServletTest.testValidateMissingPermFails » Test case throws exception: ... -[ERROR]  ClientServletTest.testValidateRequiredPermSet » Test case throws exception: C... -[ERROR]  ClientServletTest.testValidateRestrictedLocalPerm » Test case throws exceptio... -[ERROR]  connectionClient1JspTest.testGetConnection1 » Test case throws exception: Can... -[ERROR]  connectionClient1ServletTest.testGetConnection1 » Test case throws exception:... -[ERROR]  lifecycleClient1JspTest.testAssociationMCFandRA » Test case throws exception:... -[ERROR]  lifecycleClient1JspTest.testBootstrapforNull » Test case throws exception: Ca... -[ERROR]  lifecycleClient1JspTest.testInstantiationOfRA » Test case throws exception: C... -[ERROR]  lifecycleClient1JspTest.testMCFcalledOnce » Test case throws exception: Canno... -[ERROR]  lifecycleClient1JspTest.testRASharability » Test case throws exception: Canno... -[ERROR]  lifecycleClient1JspTest.testRAforJavaBean » Test case throws exception: Canno... -[ERROR]  lifecycleClient1ServletTest.testAssociationMCFandRA » Test case throws except... -[ERROR]  lifecycleClient1ServletTest.testBootstrapforNull » Test case throws exception... -[ERROR]  lifecycleClient1ServletTest.testInstantiationOfRA » Test case throws exceptio... -[ERROR]  lifecycleClient1ServletTest.testMCFcalledOnce » Test case throws exception: C... -[ERROR]  lifecycleClient1ServletTest.testRASharability » Test case throws exception: C... -[ERROR]  lifecycleClient1ServletTest.testRAforJavaBean » Test case throws exception: C... -[ERROR]  securityClient1JspTest.testConnManagerAllocateConnection » Test case throws e... -[ERROR]  securityClient1JspTest.testContainerManaged » Test case throws exception: Can... -[ERROR]  securityClient1ServletTest.testConnManagerAllocateConnection » Test case thro... -[ERROR]  securityClient1ServletTest.testContainerManaged » Test case throws exception:... -[ERROR]  workmgtClient1JspTest.testForUnsharedTimer » Test case throws exception: Cann... -[ERROR]  workmgtClient1JspTest.testNestedWork » Test case throws exception: Cannot inv... -[ERROR]  workmgtClient1JspTest.testScheduleWork » Test case throws exception: Cannot i... -[ERROR]  workmgtClient1JspTest.testScheduleWorkListener » Test case throws exception: ... -[ERROR]  workmgtClient1JspTest.testUnknownWorkDuration » Test case throws exception: C... -[ERROR]  workmgtClient1JspTest.testWorkCompletedException » Test case throws exception... -[ERROR]  workmgtClient1JspTest.testWorkListenerImplementation » Test case throws excep... -[ERROR]  workmgtClient1JspTest.testWorkManagerImplementaion » Test case throws excepti... -[ERROR]  workmgtClient1ServletTest.testForUnsharedTimer » Test case throws exception: ... -[ERROR]  workmgtClient1ServletTest.testNestedWork » Test case throws exception: Cannot... -[ERROR]  workmgtClient1ServletTest.testScheduleWork » Test case throws exception: Cann... -[ERROR]  workmgtClient1ServletTest.testScheduleWorkListener » Test case throws excepti... -[ERROR]  workmgtClient1ServletTest.testUnknownWorkDuration » Test case throws exceptio... -[ERROR]  workmgtClient1ServletTest.testWorkCompletedException » Test case throws excep... -[ERROR]  workmgtClient1ServletTest.testWorkListenerImplementation » Test case throws e... -[ERROR]  workmgtClient1ServletTest.testWorkManagerImplementaion » Test case throws exc... -[INFO] -[ERROR] Tests run: 257, Failures: 0, Errors: 127, Skipped: 0 -[INFO] -[INFO] -[INFO] --- maven-failsafe-plugin:3.0.0-M5:integration-test (connector-ejb-tests) @ glassfish.connector-platform-tck --- -[INFO] -[INFO] --- maven-failsafe-plugin:3.0.0-M5:verify (connector-javatest-tests) @ glassfish.connector-platform-tck --- -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD FAILURE -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 07:02 min -[INFO] Finished at: 2024-11-19T18:02:11+05:30 -[INFO] ------------------------------------------------------------------------ -[ERROR] Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M5:verify (connector-javatest-tests) on project glassfish.connector-platform-tck: There are test failures. -[ERROR]  -[ERROR] Please refer to /home/g/tck/connector/platform-tck/glassfish-runner/connector-platform-tck/target/failsafe-reports for the individual test results. -[ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream. -[ERROR] -> [Help 1] -[ERROR] -[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. -[ERROR] Re-run Maven using the -X switch to enable full debug logging. -[ERROR] -[ERROR] For more information about the errors and possible solutions, please read the following articles: -[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException diff --git a/glassfish-runner/connector-platform-tck/src/test/resources/appclient-arquillian.xml b/glassfish-runner/connector-platform-tck/src/test/resources/appclient-arquillian.xml index 0c311e2a65..d8dc1dfe8b 100644 --- a/glassfish-runner/connector-platform-tck/src/test/resources/appclient-arquillian.xml +++ b/glassfish-runner/connector-platform-tck/src/test/resources/appclient-arquillian.xml @@ -52,7 +52,7 @@ \\ PATH=${env.PATH};LD_LIBRARY_PATH=${glassfish.home}/lib;AS_DEBUG=true; - APPCPATH=${glassfish.home}/glassfish/lib/arquillian-protocol-lib.jar:target/appclient/lib/arquillian-core.jar:target/appclient/lib/arquillian-junit5.jar:${glassfish.home}/glassfish/modules/security.jar + APPCPATH=${glassfish.home}/glassfish/lib/arquillian-protocol-lib.jar:${glassfish.home}/glassfish/lib/connector.jar:target/appclient/lib/arquillian-core.jar:target/appclient/lib/arquillian-junit5.jar:${glassfish.home}/glassfish/modules/security.jar ${project.basedir} ${ts.home}/tmp ${ts.home}/bin/ts.jte diff --git a/glassfish-runner/xa-platform-tck/pom.xml b/glassfish-runner/xa-platform-tck/pom.xml index 5deda4729d..f35676bba7 100644 --- a/glassfish-runner/xa-platform-tck/pom.xml +++ b/glassfish-runner/xa-platform-tck/pom.xml @@ -518,6 +518,10 @@ create-connector-connection-pool --raname whitebox-tx + --user + ${admin.user} + --passwordfile + ${password.file} --property user=cts1:password=cts1:TSRValue=comp/TransactionSynchronizationRegistry --connectiondefinition diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotationClientEjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotationClientEjbTest.java index d95ef2956a..735b239b64 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotationClientEjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotationClientEjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive annotations_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "annotations_ejb_vehicle_client.jar"); // The class files annotations_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.annotations.anno.annotationClient.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, @@ -118,7 +119,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test annotations_ejb_vehicle_ejb.addAsManifestResource(ejbResURL1, "ejb-jar.xml"); } // The sun-ejb-jar.xml file - ejbResURL1 = annotationClient.class.getResource("annotations_jsp_vehicle_web.war.sun-web.xml"); + ejbResURL1 = annotationClient.class.getResource("annotations_ejb_vehicle_ejb.jar.sun-ejb-jar.xml"); if(ejbResURL1 != null) { annotations_ejb_vehicle_ejb.addAsManifestResource(ejbResURL1, "sun-ejb-jar.xml"); } diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotationClientJspTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotationClientJspTest.java index cc3094e4de..fed1154b68 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotationClientJspTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotationClientJspTest.java @@ -75,7 +75,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test com.sun.ts.tests.common.vehicle.VehicleClient.class ); // The web.xml descriptor - URL warResURL = annotationClient.class.getResource("annotations_ejb_vehicle_ejb.xml"); + URL warResURL = annotationClient.class.getResource("annotations_jsp_vehicle_web.xml"); if(warResURL != null) { annotations_jsp_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); } diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 47b009e84b..e8d930c97d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-anno_no_md eis/whitebox-anno_no_md - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_jsp_vehicle_web.war.sun-web.xml index eab56b6325..889efa08e1 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-anno_no_md eis/whitebox-anno_no_md - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_servlet_vehicle_web.war.sun-web.xml index eab56b6325..889efa08e1 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/anno/annotations_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-anno_no_md eis/whitebox-anno_no_md - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/ClientEjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/ClientEjbTest.java index 7bd950ff25..c2cc137385 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/ClientEjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/ClientEjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive mdcomplete_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "mdcomplete_ejb_vehicle_client.jar"); // The class files mdcomplete_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.annotations.mdcomplete.Client.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, @@ -89,7 +90,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test // The sun-application-client.xml file need to be added or should this be in in the vendor Arquillian extension? resURL = Client.class.getResource("//com/sun/ts/tests/common/vehicle/ejb/ejb_vehicle_client.jar.sun-application-client.xml"); if(resURL != null) { - mdcomplete_ejb_vehicle_client.addAsManifestResource(resURL, "application-client.xml"); + mdcomplete_ejb_vehicle_client.addAsManifestResource(resURL, "sun-application-client.xml"); } mdcomplete_ejb_vehicle_client.addAsManifestResource(new StringAsset("Main-Class: com.sun.ts.tests.common.vehicle.VehicleClient\n"), "MANIFEST.MF"); // Call the archive processor diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index b8ec304164..c588e72512 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-mdcomplete eis/whitebox-mdcomplete - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_jsp_vehicle_web.war.sun-web.xml index a70d026515..1a98d4b105 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-mdcomplete eis/whitebox-mdcomplete - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_servlet_vehicle_web.war.sun-web.xml index a70d026515..1a98d4b105 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/mdcomplete/mdcomplete_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-mdcomplete eis/whitebox-mdcomplete - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/paClientEjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/paClientEjbTest.java index 35244d2080..050054517a 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/paClientEjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/paClientEjbTest.java @@ -79,7 +79,8 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test com.sun.ts.lib.harness.EETest.class, com.sun.ts.lib.harness.ServiceEETest.class, com.sun.ts.lib.harness.EETest.SetupException.class, - com.sun.ts.tests.common.vehicle.VehicleClient.class + com.sun.ts.tests.common.vehicle.VehicleClient.class, + com.sun.ts.tests.connector.annotations.partialanno.paClient.class ); // The application-client.xml descriptor URL resURL = paClient.class.getResource("mdcomplete_ejb_vehicle_client.xml"); diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 796cf8d4da..ad65665f29 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,16 +28,16 @@ eis/whitebox-mixedmode eis/whitebox-mixedmode - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-multianno eis/whitebox-multianno - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_jsp_vehicle_web.war.sun-web.xml index d0a5a5bc35..5f03df9472 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_jsp_vehicle_web.war.sun-web.xml @@ -23,16 +23,16 @@ eis/whitebox-mixedmode eis/whitebox-mixedmode - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-multianno eis/whitebox-multianno - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_servlet_vehicle_web.war.sun-web.xml index d0a5a5bc35..5f03df9472 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/annotations/partialanno/partialanno_servlet_vehicle_web.war.sun-web.xml @@ -23,16 +23,16 @@ eis/whitebox-mixedmode eis/whitebox-mixedmode - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-multianno eis/whitebox-multianno - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManagerClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManagerClient1EjbTest.java index ceb339a2cb..6593e7976b 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManagerClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManagerClient1EjbTest.java @@ -67,6 +67,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive connManager_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "connManager_ejb_vehicle_client.jar"); // The class files connManager_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.connManager.connManagerClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index a923002337..36e7987f3d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,24 +28,24 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_jsp_vehicle_web.war.sun-web.xml index 86df09cf06..2689b6cfa3 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_jsp_vehicle_web.war.sun-web.xml @@ -23,24 +23,24 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_servlet_vehicle_web.war.sun-web.xml index d4d1eb0eba..62e0222919 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/connManager/connManager_servlet_vehicle_web.war.sun-web.xml @@ -23,24 +23,24 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/deployment/ejb_Deployment_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/deployment/ejb_Deployment_ejb.jar.sun-ejb-jar.xml index c64efe0fa9..7a458bf7e4 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/deployment/ejb_Deployment_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/deployment/ejb_Deployment_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/ejb_Deployment_whitebox-tx.rar eis/ejb_Deployment_whitebox-tx.rar - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/connectionClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/connectionClient1EjbTest.java index 20a963c237..99150b1433 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/connectionClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/connectionClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive localTx_conn_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "localTx_conn_ejb_vehicle_client.jar"); // The class files localTx_conn_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.localTx.connection.connectionClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, @@ -82,12 +83,12 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test com.sun.ts.tests.common.vehicle.VehicleClient.class ); // The application-client.xml descriptor - URL resURL = connectionClient1.class.getResource("/com/sun/ts/tests/common/vehicle/ejb/ejb_vehicle_client.xml"); + URL resURL = connectionClient1.class.getResource("localTx_conn_ejb_vehicle_client.xml"); if(resURL != null) { localTx_conn_ejb_vehicle_client.addAsManifestResource(resURL, "application-client.xml"); } // The sun-application-client.xml file need to be added or should this be in in the vendor Arquillian extension? - resURL = connectionClient1.class.getResource("//com/sun/ts/tests/common/vehicle/ejb/ejb_vehicle_client.jar.sun-application-client.xml"); + resURL = connectionClient1.class.getResource("localTx_conn_ejb_vehicle_client.jar.sun-application-client.xml"); if(resURL != null) { localTx_conn_ejb_vehicle_client.addAsManifestResource(resURL, "application-client.xml"); } @@ -113,12 +114,12 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test com.sun.ts.tests.common.vehicle.ejb.EJBVehicle.class ); // The ejb-jar.xml descriptor - URL ejbResURL1 = connectionClient1.class.getResource("/ejb_vehicle_ejb.xml"); + URL ejbResURL1 = connectionClient1.class.getResource("localTx_conn_ejb_vehicle_ejb.xml"); if(ejbResURL1 != null) { localTx_conn_ejb_vehicle_ejb.addAsManifestResource(ejbResURL1, "ejb-jar.xml"); } // The sun-ejb-jar.xml file - ejbResURL1 = connectionClient1.class.getResource("/ejb_vehicle_ejb.jar.sun-ejb-jar.xml"); + ejbResURL1 = connectionClient1.class.getResource("localTx_conn_ejb_vehicle_ejb.jar.sun-ejb-jar.xml"); if(ejbResURL1 != null) { localTx_conn_ejb_vehicle_ejb.addAsManifestResource(ejbResURL1, "sun-ejb-jar.xml"); } diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index e9b877eb4b..59658be89e 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_jsp_vehicle_web.war.sun-web.xml index 72d9231635..cd6fa6017d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_servlet_vehicle_web.war.sun-web.xml index 72d9231635..cd6fa6017d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/connection/localTx_conn_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/eventClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/eventClient1EjbTest.java index df6f005b7e..c6ef3fbea6 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/eventClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/eventClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive localTx_event_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "localTx_event_ejb_vehicle_client.jar"); // The class files localTx_event_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.localTx.event.eventClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index ee30f99be4..0ceca0d2a6 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_jsp_vehicle_web.war.sun-web.xml index 9ae17fe1cd..08e5c179d4 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_servlet_vehicle_web.war.sun-web.xml index 9ae17fe1cd..08e5c179d4 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/event/localTx_event_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1EjbTest.java index 99406edcfa..2f0be5d87e 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/lifecycleClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive localTx_lifecycle_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "localTx_lifecycle_ejb_vehicle_client.jar"); // The class files localTx_lifecycle_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, @@ -79,7 +80,8 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test com.sun.ts.lib.harness.EETest.class, com.sun.ts.lib.harness.ServiceEETest.class, com.sun.ts.lib.harness.EETest.SetupException.class, - com.sun.ts.tests.common.vehicle.VehicleClient.class + com.sun.ts.tests.common.vehicle.VehicleClient.class, + com.sun.ts.tests.connector.localTx.lifecycle.lifecycleClient1.class ); // The application-client.xml descriptor URL resURL = lifecycleClient1.class.getResource("localTx_lifecycle_ejb_vehicle_client.xml"); diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 2bfc103bec..3477868976 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_jsp_vehicle_web.war.sun-web.xml index 9ae17fe1cd..08e5c179d4 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_servlet_vehicle_web.war.sun-web.xml index 9ae17fe1cd..08e5c179d4 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/lifecycle/localTx_lifecycle_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/MDBClient.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/MDBClient.java index 62d4d1109f..f86a236b40 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/MDBClient.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/MDBClient.java @@ -21,6 +21,9 @@ package com.sun.ts.tests.connector.localTx.msginflow; import java.io.Serializable; +import java.io.StringWriter; +import java.io.PrintWriter; + import java.util.Properties; import java.util.Vector; @@ -104,7 +107,9 @@ public void setup(String[] args, Properties p) throws Exception { ds1 = (TSDataSource) nctx.lookup(whitebox_tx); ds2 = (TSDataSource) nctx.lookup(whitebox_tx_param); ds3 = (TSDataSource) nctx.lookup(whitebox_ibanno_no_md); + } catch (Exception e) { + e.printStackTrace(); TestUtil.printStackTrace(e); TestUtil.logMsg("Exception during JNDI lookup: " + e.getMessage()); } @@ -137,7 +142,10 @@ public void testReceiveMessage() throws Exception { log = ds1.getStateLog(); TestUtil.logTrace("Got State LOG!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception caught on creating connection:"); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + TestUtil.logTrace("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -149,6 +157,8 @@ public void testReceiveMessage() throws Exception { for (int i = 0; i < log.size(); i++) { String str = (String) log.elementAt(i); + TestUtil.logTrace("^^^^^^^^^^^^^^^^^^^^^^^^^^^" + str); + if (str.startsWith(toCheck1)) { b1 = true; } @@ -189,7 +199,11 @@ public void testProxyInterfaceImp() throws Exception { log = ds1.getStateLog(); TestUtil.logTrace("Got State LOG!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception caught on creating connection:"); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -259,7 +273,11 @@ public void testUniqueMessageEndpoint() throws Exception { log = ds1.getStateLog(); TestUtil.logTrace("Got State LOG!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception caught on creating connection:"); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -310,7 +328,11 @@ public void testMessageEndpointFactoryForEquals() throws Exception { log = ds1.getStateLog(); TestUtil.logTrace("Got State LOG!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception caught on creating connection:"); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -361,7 +383,11 @@ public void testUniqueMessageEndpointFactory() throws Exception { log = ds1.getStateLog(); TestUtil.logTrace("Got State LOG!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception caught on creating connection:"); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -412,7 +438,11 @@ public void testEndpointActivationName() throws Exception { log = ds3.getStateLog(); TestUtil.logTrace("Got State LOG!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception caught on creating connection:"); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -463,7 +493,11 @@ public void testGetEndpoinClass() throws Exception { log = ds3.getStateLog(); TestUtil.logTrace("Got State LOG!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception caught on creating connection:"); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -517,7 +551,12 @@ public void testMessageDeliveryTransacted() throws Exception { log = ds1.getStateLog(); TestUtil.logTrace("Got State LOG!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception caught on creating connection:"); + + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -601,7 +640,11 @@ public void testMessageDeliveryNonTransacted() throws Exception { log = ds1.getStateLog(); TestUtil.logTrace("Got State LOG!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception caught on creating connection:"); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -814,7 +857,11 @@ public void testActivationSpeccalledOnce() throws Exception { dbutil.insertIntoTable(con); TestUtil.logMsg("Values inserted into table!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception inserting into table."); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -823,7 +870,11 @@ public void testActivationSpeccalledOnce() throws Exception { dbutil.dropTable(con); TestUtil.logMsg("Table has been dropped!"); } catch (Exception sqle) { - TestUtil.logMsg("Exception dropping table."); + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } TestUtil.logMsg("Exception dropping table."); @@ -861,6 +912,11 @@ public void testEJBExceptionNotSupported() throws Exception { log = ds1.getStateLog(); TestUtil.logTrace("Got connection."); } catch (Exception sqle) { + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); throw new Exception(sqle.getMessage(), sqle); } @@ -900,6 +956,12 @@ public void testEJBExceptionNotSupported() throws Exception { dbutil.dropTable(con); TestUtil.logMsg("Table has been dropped!"); } catch (Exception sqle) { + StringWriter sw = new StringWriter(); + sqle.printStackTrace(new PrintWriter(sw)); + String exceptionAsString = sw.toString(); + + TestUtil.logMsg("Exception caught on creating connection:" + exceptionAsString); + TestUtil.logMsg("Exception dropping table."); throw new Exception(sqle.getMessage(), sqle); } diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index de374a4f6e..6aa748459a 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,24 +28,24 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-ibanno_no_md eis/whitebox-ibanno_no_md - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-tx-param eis/whitebox-tx-param - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_jsp_vehicle_web.war.sun-web.xml index 21ba91307e..6bf5e2c5cb 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_jsp_vehicle_web.war.sun-web.xml @@ -23,16 +23,16 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-tx-param eis/whitebox-tx-param - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_servlet_vehicle_web.war.sun-web.xml index 21ba91307e..6bf5e2c5cb 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/msginflow/msginflow_mdb_servlet_vehicle_web.war.sun-web.xml @@ -23,16 +23,16 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-tx-param eis/whitebox-tx-param - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 9e82dc5237..43cb9157ec 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,16 +28,16 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-tx-param eis/whitebox-tx-param - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_jsp_vehicle_web.war.sun-web.xml index 52133c9437..53de680ee3 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_jsp_vehicle_web.war.sun-web.xml @@ -23,16 +23,16 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-tx-param eis/whitebox-tx-param - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_servlet_vehicle_web.war.sun-web.xml index 52133c9437..53de680ee3 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/localTx_security_servlet_vehicle_web.war.sun-web.xml @@ -23,16 +23,16 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-tx-param eis/whitebox-tx-param - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/securityClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/securityClient1EjbTest.java index 4d264b3833..c852d2a372 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/securityClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/security/securityClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive localTx_security_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "localTx_security_ejb_vehicle_client.jar"); // The class files localTx_security_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.localTx.security.securityClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transaction/conSharing2/ejb_txTran_conSharing2_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transaction/conSharing2/ejb_txTran_conSharing2_ejb.jar.sun-ejb-jar.xml index 18b0134108..8ee0d44c1a 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transaction/conSharing2/ejb_txTran_conSharing2_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transaction/conSharing2/ejb_txTran_conSharing2_ejb.jar.sun-ejb-jar.xml @@ -32,8 +32,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 false @@ -64,8 +64,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transaction/conSharing3/ejb_txTran_conSharing3_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transaction/conSharing3/ejb_txTran_conSharing3_ejb.jar.sun-ejb-jar.xml index a2861564da..5e0327372a 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transaction/conSharing3/ejb_txTran_conSharing3_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transaction/conSharing3/ejb_txTran_conSharing3_ejb.jar.sun-ejb-jar.xml @@ -32,8 +32,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 false @@ -64,8 +64,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1EjbTest.java index c401749d44..8da88d71dc 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1EjbTest.java @@ -67,6 +67,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive localTx_transinflow_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "localTx_transinflow_ejb_vehicle_client.jar"); // The class files localTx_transinflow_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.localTx.transinflow.transinflowClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1JspTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1JspTest.java index fca70f13ae..ba46a1708c 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1JspTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflowClient1JspTest.java @@ -79,7 +79,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test localTx_transinflow_jsp_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); } // The sun-web.xml descriptor - warResURL = transinflowClient1.class.getResource("transinflow_servlet_vehicle_servlet.xml"); + warResURL = transinflowClient1.class.getResource("transinflow_jsp_vehicle_web.war.sun-web.xml"); if(warResURL != null) { localTx_transinflow_jsp_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); } diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 84375ba748..f491450d21 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,16 +28,16 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-mdcomplete eis/whitebox-mdcomplete - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_ejb_vehicle_ejb.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_ejb_vehicle_ejb.xml index d437345ef7..51dfd0fa55 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_ejb_vehicle_ejb.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_ejb_vehicle_ejb.xml @@ -17,21 +17,15 @@ --> - + Ejb1 - com_sun_ts_tests_common_vehicle_ejb_EJBVehicle com_sun_ts_tests_common_vehicle_ejb_EJBVehicle com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote com.sun.ts.tests.common.vehicle.ejb.EJBVehicle Stateful Container - - - - description eis/whitebox-tx @@ -46,6 +40,9 @@ Container Shareable + + + @@ -54,10 +51,8 @@ com_sun_ts_tests_common_vehicle_ejb_EJBVehicle Remote runTest - Required - - + \ No newline at end of file diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_jsp_vehicle_web.war.sun-web.xml index 639f388265..55c9c60a1d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_jsp_vehicle_web.war.sun-web.xml @@ -23,16 +23,16 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-mdcomplete eis/whitebox-mdcomplete - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_servlet_vehicle_web.war.sun-web.xml index 639f388265..55c9c60a1d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/transinflow/transinflow_servlet_vehicle_web.war.sun-web.xml @@ -23,16 +23,16 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-mdcomplete eis/whitebox-mdcomplete - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClientEjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClientEjbTest.java index 0cc3f0bad7..9b40a931e0 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClientEjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/WorkContextClientEjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive workcontext_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "workcontext_ejb_vehicle_client.jar"); // The class files workcontext_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.localTx.workcontext.WorkContextClient.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, @@ -118,7 +119,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test workcontext_ejb_vehicle_ejb.addAsManifestResource(ejbResURL1, "ejb-jar.xml"); } // The sun-ejb-jar.xml file - ejbResURL1 = WorkContextClient.class.getResource("workcontext_jsp_vehicle_web.war.sun-web.xml"); + ejbResURL1 = WorkContextClient.class.getResource("workcontext_ejb_vehicle_ejb.jar.sun-ejb-jar.xml"); if(ejbResURL1 != null) { workcontext_ejb_vehicle_ejb.addAsManifestResource(ejbResURL1, "sun-ejb-jar.xml"); } diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 850ab821e5..7df0ef550e 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,24 +28,24 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-mdcomplete eis/whitebox-mdcomplete - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-anno_no_md eis/whitebox-anno_no_md - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_ejb_vehicle_ejb.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_ejb_vehicle_ejb.xml index 33765a9b2f..fdb036adb0 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_ejb_vehicle_ejb.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_ejb_vehicle_ejb.xml @@ -17,21 +17,15 @@ --> - + Ejb1 - com_sun_ts_tests_common_vehicle_ejb_EJBVehicle com_sun_ts_tests_common_vehicle_ejb_EJBVehicle com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote com.sun.ts.tests.common.vehicle.ejb.EJBVehicle Stateful Container - - - - description eis/whitebox-tx @@ -39,20 +33,9 @@ Container Shareable - - description - eis/whitebox-mdcomplete - com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - Container - Shareable - - - description - eis/whitebox-anno_no_md - com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory - Container - Shareable - + + + @@ -61,10 +44,8 @@ com_sun_ts_tests_common_vehicle_ejb_EJBVehicle Remote runTest - Required - - + \ No newline at end of file diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_jsp_vehicle_web.war.sun-web.xml index 04be61c6c0..95cd9e825c 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_jsp_vehicle_web.war.sun-web.xml @@ -23,24 +23,24 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-anno_no_md eis/whitebox-anno_no_md - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-mdcomplete eis/whitebox-mdcomplete - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_servlet_vehicle_web.war.sun-web.xml index 04be61c6c0..95cd9e825c 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workcontext/workcontext_servlet_vehicle_web.war.sun-web.xml @@ -23,24 +23,24 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-anno_no_md eis/whitebox-anno_no_md - rauser1 - rapassword1 + cts1 + cts1 eis/whitebox-mdcomplete eis/whitebox-mdcomplete - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index da6cfac89e..760f0edd27 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_jsp_vehicle_web.war.sun-web.xml index 9ae17fe1cd..08e5c179d4 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_servlet_vehicle_web.war.sun-web.xml index 9ae17fe1cd..08e5c179d4 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/localTx_workmgt_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-tx eis/whitebox-tx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1EjbTest.java index e6679efbed..12704e3f58 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/localTx/workmgt/workmgtClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive localTx_workmgt_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "localTx_workmgt_ejb_vehicle_client.jar"); // The class files localTx_workmgt_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.localTx.workmgt.workmgtClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connectionClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connectionClient1EjbTest.java index 8d8dbac66e..83eb60d505 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connectionClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connectionClient1EjbTest.java @@ -87,6 +87,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive connection_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "connection_ejb_vehicle_client.jar"); // The class files connection_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.noTx.connection.connectionClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 6b6b07e5e5..f89b33d769 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_jsp_vehicle_web.war.sun-web.xml index e21d9e570b..ce5ab76f08 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_servlet_vehicle_web.war.sun-web.xml index e21d9e570b..ce5ab76f08 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/connection/connection_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/eventClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/eventClient1EjbTest.java index 4c30024799..c58357854f 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/eventClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/eventClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive event_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "event_ejb_vehicle_client.jar"); // The class files event_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.noTx.event.eventClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 3d5b396af3..c51c87c0eb 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_jsp_vehicle_web.war.sun-web.xml index 180a391fda..a67f2420f8 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_servlet_vehicle_web.war.sun-web.xml index 180a391fda..a67f2420f8 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/event/event_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1EjbTest.java index 9e2f115802..67dd9124ee 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycleClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive lifecycle_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "lifecycle_ejb_vehicle_client.jar"); // The class files lifecycle_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.noTx.lifecycle.lifecycleClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, @@ -113,12 +114,12 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test com.sun.ts.tests.common.vehicle.ejb.EJBVehicle.class ); // The ejb-jar.xml descriptor - URL ejbResURL1 = lifecycleClient1.class.getResource("/ejb_vehicle_ejb.xml"); + URL ejbResURL1 = lifecycleClient1.class.getResource("lifecycle_ejb_vehicle_ejb.xml"); if(ejbResURL1 != null) { lifecycle_ejb_vehicle_ejb.addAsManifestResource(ejbResURL1, "ejb-jar.xml"); } // The sun-ejb-jar.xml file - ejbResURL1 = lifecycleClient1.class.getResource("/ejb_vehicle_ejb.jar.sun-ejb-jar.xml"); + ejbResURL1 = lifecycleClient1.class.getResource("lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml"); if(ejbResURL1 != null) { lifecycle_ejb_vehicle_ejb.addAsManifestResource(ejbResURL1, "sun-ejb-jar.xml"); } diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 19fa7af722..ff2c62afd3 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_jsp_vehicle_web.war.sun-web.xml index 180a391fda..a67f2420f8 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_servlet_vehicle_web.war.sun-web.xml index 180a391fda..a67f2420f8 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/lifecycle/lifecycle_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/securityClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/securityClient1EjbTest.java index c6042007cc..5d6299ba5e 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/securityClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/securityClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive security_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "security_ejb_vehicle_client.jar"); // The class files security_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.noTx.security.securityClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/securityClient1JspTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/securityClient1JspTest.java index 9ef2459a0d..6a090f8a66 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/securityClient1JspTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/securityClient1JspTest.java @@ -75,12 +75,12 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test com.sun.ts.tests.common.vehicle.VehicleClient.class ); // The web.xml descriptor - URL warResURL = securityClient1.class.getResource("transinflow_jsp_vehicle_web.xml"); + URL warResURL = securityClient1.class.getResource("security_jsp_vehicle_web.xml"); if(warResURL != null) { security_jsp_vehicle_web.addAsWebInfResource(warResURL, "web.xml"); } // The sun-web.xml descriptor - warResURL = securityClient1.class.getResource("transinflow_jsp_vehicle_web.war.sun-web.xml"); + warResURL = securityClient1.class.getResource("security_jsp_vehicle_web.war.sun-web.xml"); if(warResURL != null) { security_jsp_vehicle_web.addAsWebInfResource(warResURL, "sun-web.xml"); } diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 10a8c11dcc..210bca74c1 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_jsp_vehicle_web.war.sun-web.xml index e21d9e570b..ce5ab76f08 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_servlet_vehicle_web.war.sun-web.xml index e21d9e570b..ce5ab76f08 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/security/security_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1EjbTest.java index 577faefb0b..b62d0de86e 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgtClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive workmgt_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "workmgt_ejb_vehicle_client.jar"); // The class files workmgt_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.noTx.workmgt.workmgtClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index c6e0ea7f12..1ee882d2a8 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_jsp_vehicle_web.war.sun-web.xml index 180a391fda..a67f2420f8 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_servlet_vehicle_web.war.sun-web.xml index 180a391fda..a67f2420f8 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/noTx/workmgt/workmgt_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-notx eis/whitebox-notx - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/permissiondd/ClientEjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/permissiondd/ClientEjbTest.java index c997ee8005..4af630aa17 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/permissiondd/ClientEjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/permissiondd/ClientEjbTest.java @@ -64,6 +64,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive permissiondd_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "permissiondd_ejb_vehicle_client.jar"); // The class files permissiondd_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.permissiondd.Client.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/connectionClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/connectionClient1EjbTest.java index 34ffa14b9a..b7ba953094 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/connectionClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/connectionClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive xa_connection_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "xa_connection_ejb_vehicle_client.jar"); // The class files xa_connection_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.xa.connection.connectionClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index a9737c5b38..26acb06e98 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_jsp_vehicle_web.war.sun-web.xml index 9fc83bd85a..ea0aed5eac 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_servlet_vehicle_web.war.sun-web.xml index 9fc83bd85a..ea0aed5eac 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/connection/xa_connection_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/eventClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/eventClient1EjbTest.java index 88da475def..56f091daf5 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/eventClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/eventClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive xa_event_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "xa_event_ejb_vehicle_client.jar"); // The class files xa_event_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.xa.event.eventClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index e0f2143379..3d1714acdb 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_jsp_vehicle_web.war.sun-web.xml index 698a366cde..0abd592f4d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_servlet_vehicle_web.war.sun-web.xml index 698a366cde..0abd592f4d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/event/xa_event_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1EjbTest.java index 036c8d7ced..12912fbee6 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/lifecycleClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive xa_lifecycle_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "xa_lifecycle_ejb_vehicle_client.jar"); // The class files xa_lifecycle_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.xa.lifecycle.lifecycleClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 9394734f1b..9ef089cf35 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_jsp_vehicle_web.war.sun-web.xml index 698a366cde..0abd592f4d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_servlet_vehicle_web.war.sun-web.xml index 698a366cde..0abd592f4d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/lifecycle/xa_lifecycle_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/securityClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/securityClient1EjbTest.java index cc627a936d..02ef9a02aa 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/securityClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/securityClient1EjbTest.java @@ -79,7 +79,8 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test com.sun.ts.lib.harness.EETest.class, com.sun.ts.lib.harness.ServiceEETest.class, com.sun.ts.lib.harness.EETest.SetupException.class, - com.sun.ts.tests.common.vehicle.VehicleClient.class + com.sun.ts.tests.common.vehicle.VehicleClient.class, + com.sun.ts.tests.connector.xa.security.securityClient1.class ); // The application-client.xml descriptor URL resURL = securityClient1.class.getResource("xa_security_ejb_vehicle_client.xml"); diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 6a32c6294c..0b882f3f48 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_jsp_vehicle_web.war.sun-web.xml index 9fc83bd85a..ea0aed5eac 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_servlet_vehicle_web.war.sun-web.xml index 9fc83bd85a..ea0aed5eac 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/security/xa_security_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/transaction/jta/ejb_JTATest_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/transaction/jta/ejb_JTATest_ejb.jar.sun-ejb-jar.xml index 3e5d9c48c2..28c12c6e73 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/transaction/jta/ejb_JTATest_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/transaction/jta/ejb_JTATest_ejb.jar.sun-ejb-jar.xml @@ -32,8 +32,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1EjbTest.java b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1EjbTest.java index 6c3bc1264d..8b72207798 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1EjbTest.java +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/workmgtClient1EjbTest.java @@ -69,6 +69,7 @@ public static EnterpriseArchive createDeploymentVehicle(@ArquillianResource Test JavaArchive xa_workmgt_ejb_vehicle_client = ShrinkWrap.create(JavaArchive.class, "xa_workmgt_ejb_vehicle_client.jar"); // The class files xa_workmgt_ejb_vehicle_client.addClasses( + com.sun.ts.tests.connector.xa.workmgt.workmgtClient1.class, com.sun.ts.tests.common.vehicle.VehicleRunnable.class, com.sun.ts.tests.common.vehicle.VehicleRunnerFactory.class, com.sun.ts.tests.common.vehicle.ejb.EJBVehicleRemote.class, diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml index 05f3fd3d83..791922591d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_ejb_vehicle_ejb.jar.sun-ejb-jar.xml @@ -28,8 +28,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 false diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_jsp_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_jsp_vehicle_web.war.sun-web.xml index 698a366cde..0abd592f4d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_jsp_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_jsp_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 diff --git a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_servlet_vehicle_web.war.sun-web.xml b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_servlet_vehicle_web.war.sun-web.xml index 698a366cde..0abd592f4d 100644 --- a/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_servlet_vehicle_web.war.sun-web.xml +++ b/tcks/apis/connector/src/main/java/com/sun/ts/tests/connector/xa/workmgt/xa_workmgt_servlet_vehicle_web.war.sun-web.xml @@ -23,8 +23,8 @@ eis/whitebox-xa eis/whitebox-xa - rauser1 - rapassword1 + cts1 + cts1 From 424acc767d69b30b886f178993f976898469f5c5 Mon Sep 17 00:00:00 2001 From: Gurunandan Rao Date: Mon, 13 Jan 2025 14:56:41 +0530 Subject: [PATCH 13/13] appclient module refactor with Arquillian and Junit. (#1648) Signed-off-by: Gurunandan Rao --- .../metadatacomplete/testapp/DataStore.java | 25 + .../testapp/DataStoreBean.java | 30 + .../testapp/DataStoreRemote.java | 25 + .../testapp/TestAppClient.java | 336 +++ .../metadatacomplete/testapp/TestBean.java | 39 + .../testapp/application-client.xml | 23 + .../metadatacomplete/testapp/application.xml | 27 + .../testapp/files/DataStoreBean.java.src | 31 + .../testapp/files/TestAppClient.java.src | 492 ++++ .../testapp/files/TestBean.java.src | 53 + .../metadatacomplete/testapp/persistence.xml | 28 + .../testapp/sun-application-client.xml | 26 + .../bin/certificates/clientcert.jks | Bin 0 -> 2257 bytes .../bin/certificates/clientcert.p12 | Bin 0 -> 1615 bytes .../jakartaeetck/bin/certificates/cts_cert | Bin 0 -> 909 bytes .../jakartaeetck/bin/ts.jte | 2462 +++++++++++++++++ .../jakartaeetck/bin/tssql.stmt | 805 ++++++ .../jakartaeetck/tmp/tstest.jte | 84 + .../appclient-platform-tck/pom.xml | 572 ++++ .../src/main/resources/jndi.properties | 28 + .../src/main/resources/logging.properties | 15 + .../java/arquillian/AppclientConfigTest.txt | 34 + .../arquillian/GlassfishTckExtension.java | 13 + .../arquillian/GlassfishXmlProcessor.java | 139 + ...boss.arquillian.core.spi.LoadableExtension | 1 + .../test/resources/appclient-arquillian.xml | 64 + .../src/test/resources/arquillian.xml | 32 + .../src/test/resources/logging.properties | 15 + tcks/profiles/platform/appclient/pom.xml | 85 + .../appclient/deploy/compat9_10/Client.java | 9 +- .../deploy/ejblink/casesens/Client.java | 109 +- .../appclient/deploy/ejblink/path/Client.java | 122 +- .../deploy/ejblink/single/Client.java | 93 +- .../deploy/ejbref/casesens/Client.java | 75 +- .../appclient/deploy/ejbref/scope/Client.java | 119 +- .../deploy/ejbref/single/Client.java | 81 +- .../deploy/enventry/casesens/Client.java | 49 +- .../deploy/enventry/scope/Client.java | 67 +- .../deploy/enventry/single/Client.java | 58 +- .../deploy/resref/casesens/Client.java | 55 +- .../appclient/deploy/resref/scope/Client.java | 80 +- .../deploy/resref/scope/TopicClient.java | 2 +- .../deploy/resref/single/Client.java | 388 +-- ...ngle_client.jar.sun-application-client.xml | 2 +- .../util/shared/ejbref/single/TestCode.java | 4 + 45 files changed, 6595 insertions(+), 202 deletions(-) create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStore.java create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStoreBean.java create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStoreRemote.java create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/TestAppClient.java create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/TestBean.java create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/application-client.xml create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/application.xml create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/DataStoreBean.java.src create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/TestAppClient.java.src create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/TestBean.java.src create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/persistence.xml create mode 100644 appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/sun-application-client.xml create mode 100644 glassfish-runner/appclient-platform-tck/jakartaeetck/bin/certificates/clientcert.jks create mode 100644 glassfish-runner/appclient-platform-tck/jakartaeetck/bin/certificates/clientcert.p12 create mode 100644 glassfish-runner/appclient-platform-tck/jakartaeetck/bin/certificates/cts_cert create mode 100644 glassfish-runner/appclient-platform-tck/jakartaeetck/bin/ts.jte create mode 100644 glassfish-runner/appclient-platform-tck/jakartaeetck/bin/tssql.stmt create mode 100644 glassfish-runner/appclient-platform-tck/jakartaeetck/tmp/tstest.jte create mode 100644 glassfish-runner/appclient-platform-tck/pom.xml create mode 100644 glassfish-runner/appclient-platform-tck/src/main/resources/jndi.properties create mode 100644 glassfish-runner/appclient-platform-tck/src/main/resources/logging.properties create mode 100644 glassfish-runner/appclient-platform-tck/src/test/java/arquillian/AppclientConfigTest.txt create mode 100644 glassfish-runner/appclient-platform-tck/src/test/java/arquillian/GlassfishTckExtension.java create mode 100644 glassfish-runner/appclient-platform-tck/src/test/java/arquillian/GlassfishXmlProcessor.java create mode 100644 glassfish-runner/appclient-platform-tck/src/test/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension create mode 100644 glassfish-runner/appclient-platform-tck/src/test/resources/appclient-arquillian.xml create mode 100644 glassfish-runner/appclient-platform-tck/src/test/resources/arquillian.xml create mode 100644 glassfish-runner/appclient-platform-tck/src/test/resources/logging.properties diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStore.java b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStore.java new file mode 100644 index 0000000000..d63bb912f4 --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStore.java @@ -0,0 +1,25 @@ +/* + * Copyright (c) 2017, 2018, 2020 Oracle and/or its affiliates. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + */ + +package com.sun.ts.tests.appclient.deploy.metadatacomplete.testapp; + +import jakarta.ejb.Local; + +@Local +public interface DataStore { + + public String getData(); +} diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStoreBean.java b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStoreBean.java new file mode 100644 index 0000000000..915de68e93 --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStoreBean.java @@ -0,0 +1,30 @@ +/* + * Copyright (c) 2017, 2018, 2020 Oracle and/or its affiliates. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + */ + +package com.sun.ts.tests.appclient.deploy.metadatacomplete.testapp; + +import jakarta.ejb.LocalBean; +import jakarta.ejb.Stateless; + +@Stateless +@LocalBean + +public class DataStoreBean implements DataStore, DataStoreRemote { + + public String getData() { + return "42"; + } +} diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStoreRemote.java b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStoreRemote.java new file mode 100644 index 0000000000..4ca9d5de6b --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/DataStoreRemote.java @@ -0,0 +1,25 @@ +/* + * Copyright (c) 2017, 2018, 2020 Oracle and/or its affiliates. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + */ + +package com.sun.ts.tests.appclient.deploy.metadatacomplete.testapp; + +import jakarta.ejb.Remote; + +@Remote +public interface DataStoreRemote { + + public String getData(); +} diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/TestAppClient.java b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/TestAppClient.java new file mode 100644 index 0000000000..25ff95630b --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/TestAppClient.java @@ -0,0 +1,336 @@ +/* + * Copyright (c) 2017, 2018, 2020 Oracle and/or its affiliates. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + */ + +/* + * @(#)TestAppClient.java 1.11 07/20/2017 + */ +package com.sun.ts.tests.appclient.deploy.metadatacomplete.testapp; + +import java.util.Properties; + +import javax.naming.InitialContext; + +import com.sun.ts.lib.harness.Status; +import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.util.TSNamingContext; + +import jakarta.annotation.Resource; +import jakarta.annotation.sql.DataSourceDefinition; +import jakarta.ejb.EJB; +import jakarta.jms.ConnectionFactory; +import jakarta.jms.JMSConnectionFactoryDefinition; +import jakarta.jms.JMSDestinationDefinition; +import jakarta.jms.Queue; +import jakarta.mail.MailSessionDefinition; +import jakarta.mail.Session; +import jakarta.persistence.EntityManagerFactory; +import jakarta.persistence.PersistenceUnit; + +@MailSessionDefinition(name = "java:comp/myMailSession", host = "smtp.gmail.com", transportProtocol = "smtps", properties = { + "mail.debug=true" }) +@DataSourceDefinition(name = "java:global/MyApp/MyDataSource", className = "oracle.jdbc.pool.OracleDataSource", url = "jdbc:oracle:thin:@localhost:1521:orcl", user = "TESTU", password = "TESTU") +@JMSConnectionFactoryDefinition(description = "Define ConnectionFactory JSPMyTestConnectionFactory", interfaceName = "jakarta.jms.ConnectionFactory", name = "java:global/JSPMyTestConnectionFactory", user = "j2ee", password = "j2ee") +@JMSDestinationDefinition(name = "java:app/jms/myappTopic", interfaceName = "jakarta.jms.Topic", destinationName = "MyPhysicalAppTopic") + +public class TestAppClient extends EETest { + + private InitialContext initialContext; + + private TSNamingContext nctx = null; + + private Properties props = null; + + @Resource(lookup = "java:comp/myMailSession") + private static Session session; + + @EJB + static DataStoreRemote dataStore; + + @Resource(lookup = "java:app/jms/TestConnectionFactory") + private static ConnectionFactory testFac; + + @Resource(lookup = "java:app/jms/TestQ") + private static Queue testQueue; + + @PersistenceUnit(unitName = "TEST-EM-APPCLIENT") + static EntityManagerFactory emf; + + /* + * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; + * generateSQL; + * + * @class.testArgs: -ap tssql.stmt + * + */ + public void setup(String[] args, Properties props) throws Fault { + this.props = props; + try { + nctx = new TSNamingContext(); + logMsg("[Client] Setup succeed (got naming context)."); + } catch (Exception e) { + throw new Fault("Setup failed:", e); + } + } + + public static void main(String[] args) { + TestAppClient theTests = new TestAppClient(); + Status s = theTests.run(args, System.out, System.err); + s.exit(); + } + + + /** + * @testName: testMailSession + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to + * true,Resource annotation should be ignored - as it is one + * of the annotations to which metadata-complete is + * applicable. + * + */ + public void testMailSession() throws Fault { + try { + Object sess = nctx.lookup("mail/Session"); + logMsg("sess" + sess); + if (null == sess) { + throw new Fault("lookup failed!"); + } + } catch (Exception e) { + throw new Fault("MailSession test failed: " + e, e); + } + } + + /** + * @testName: testMailSessionDefinition + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to + * true,MailSessionDefinition annotation should be ignored - + * as it is one of the annotations to which metadata-complete + * is applicable. + * + */ + public void testMailSessionDefinition() throws Fault { + try { + logMsg("session" + session); + logMsg("mail.debug:" + session.getProperty("mail.debug")); + if (null != session) { + throw new Fault("MailSessionDefinition test failed!"); + } + } catch (Exception e) { + throw new Fault("MailSessionDefinition test failed: " + e, e); + } + } + + /** + * @testName: testEJBAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,EJB + * annotation should be ignored - as it is one of the + * annotations to which metadata-complete is applicable. + * + */ + public void testEJBAnnotation() throws Fault { + try { + logMsg("datastore" + dataStore); + if (null != dataStore) { + throw new Fault("EJBAnnotation test failed!"); + } + } catch (Exception e) { + throw new Fault("EJBAnnotation test failed: " + e, e); + } + } + + /** + * @testName: testDataSourceDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to + * true,DataSourceDefinition annotation should be ignored - as + * it is one of the annotations to which metadat-complete is + * applicable. + * + */ + public void testDataSourceDefinitionAnnotation() throws Fault { + try { + Object dataSource = nctx.lookup("java:global/MyApp/MyDataSource"); + if (dataSource != null) { + throw new Fault("DataSourceDefinition test failed!"); + } + } catch (Exception e) { + throw new Fault("DataSourceDefinition test failed: " + e, e); + } + } + + /** + * @testName: testJMSConnectionFactoryDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to + * true,JMSConnectionFactoryDefinition annotation should be + * ignored - as it is one of the annotations to which + * metadata-complete is applicable. + * + */ + public void testJMSConnectionFactoryDefinitionAnnotation() throws Fault { + try { + Object connFactory = nctx + .lookup("java:global/JSPMyTestConnectionFactory"); + logMsg("connFactory" + connFactory); + if (connFactory != null) { + throw new Fault("JMSConnectionFactoryDefinition test failed!"); + } + } catch (Exception e) { + throw new Fault("JMSConnectionFactoryDefinition test failed: " + e, e); + } + } + + /** + * @testName: testJMSDestinationDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to + * true,JMSDestinationDefinition annotation should be ignored + * - as it is one of the annotations to which + * metadata-complete is applicable. + * + */ + public void testJMSDestinationDefinitionAnnotation() throws Fault { + try { + Object destination = nctx.lookup("java:app/jms/myappTopic"); + logMsg("destination" + destination); + if (destination != null) { + throw new Fault("JMSDestinationDefinition test failed!"); + } + } catch (Exception e) { + throw new Fault("JMSDestinationDefinition test failed: " + e, e); + } + } + + /** + * @testName: testConnectionFactoryDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to + * true,ConnectionFactoryDefinition annotation should be + * ignored - as it is one of the annotations to which + * metadata-complete is applicable. + * + */ + public void testConnectionFactoryDefinitionAnnotation() throws Fault { + try { + logMsg("testFac" + testFac); + if (testFac != null) { + throw new Fault("ConnectionFactoryDefinition test failed!"); + } + } catch (Exception e) { + throw new Fault("ConnectionFactoryDefinition test failed: " + e, e); + } + } + + /** + * @testName: testAdministeredObjectDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to + * true,AdministeredObjectDefinition annotation should be + * ignored - as it is one of the annotations to which + * metadata-complete is applicable. + * + */ + public void testAdministeredObjectDefinitionAnnotation() throws Fault { + try { + logMsg("testQueue" + testQueue); + if (testFac != null) { + throw new Fault("AdministeredObjectDefinition test failed!"); + } + } catch (Exception e) { + throw new Fault("AdministeredObjectDefinition test failed: " + e, e); + } + } + + /** + * @testName: testPersistenceUnitDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to + * true,PersistenceUnitDefinition annotation should be ignored + * - as it is one of the annotations to which + * metadata-complete is applicable. + * + */ + public void testPersistenceUnitDefinitionAnnotation() throws Fault { + try { + logMsg("emf" + emf); + if (emf != null) { + throw new Fault("PersistenceUnitDefinition test failed!"); + } + } catch (Exception e) { + throw new Fault("PersistenceUnitDefinition test failed: " + e, e); + } + } + + public void cleanup() throws Fault { + logMsg("[Client] cleanup()"); + } +} diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/TestBean.java b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/TestBean.java new file mode 100644 index 0000000000..8b672b1d3f --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/TestBean.java @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2017, 2020 Oracle and/or its affiliates. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + */ + +package com.sun.ts.tests.appclient.deploy.metadatacomplete.testapp; + +import jakarta.annotation.ManagedBean; +import jakarta.annotation.PostConstruct; +import jakarta.annotation.PreDestroy; + +@ManagedBean("mybean") +public class TestBean { + + public TestBean() { + System.out.println(">>>>>>>>>>>>> Test123 "); + } + + @PostConstruct + public void postConstruct() { + System.out.println(">>> TestBean:postConstruct()"); + } + + @PreDestroy + public void preDestroy() { + System.out.println(">>> TestBean:preDestroy()"); + } +} diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/application-client.xml b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/application-client.xml new file mode 100644 index 0000000000..cdc3abfdb9 --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/application-client.xml @@ -0,0 +1,23 @@ + + + + + testapp + + diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/application.xml b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/application.xml new file mode 100644 index 0000000000..4bc148e0b6 --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/application.xml @@ -0,0 +1,27 @@ + + + + + + testApp_ejb.jar + + + testApp_client.jar + + diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/DataStoreBean.java.src b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/DataStoreBean.java.src new file mode 100644 index 0000000000..c3c5c1b0e3 --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/DataStoreBean.java.src @@ -0,0 +1,31 @@ +/* + * Copyright (c) 2017, 2018, 2020 Oracle and/or its affiliates. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + */ + +package com.sun.ts.tests.appclient.deploy.metadatacomplete.testapp; +import jakarta.ejb.LocalBean; +import jakarta.ejb.Stateless; +import jakarta.resource.ConnectionFactoryDefinition; +import jakarta.resource.AdministeredObjectDefinition; + +@Stateless +@LocalBean + +public class DataStoreBean implements DataStore,DataStoreRemote{ + + public String getData() { + return "42"; + } +} \ No newline at end of file diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/TestAppClient.java.src b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/TestAppClient.java.src new file mode 100644 index 0000000000..35deac25dc --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/TestAppClient.java.src @@ -0,0 +1,492 @@ +/* + * Copyright (c) 2017, 2018, 2020 Oracle and/or its affiliates. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + */ + +package com.sun.ts.tests.appclient.deploy.metadatacomplete.testapp; + +import java.io.PrintStream; +import jakarta.annotation.Resource; +import javax.naming.InitialContext; +import javax.naming.NamingException; +import javax.naming.NamingEnumeration; +import javax.naming.NameClassPair; +import java.util.Properties; +import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.util.TestUtil; +import com.sun.ts.lib.util.TSNamingContext; +import com.sun.javatest.Status; +import jakarta.mail.Session; +import jakarta.mail.MailSessionDefinition; +import jakarta.ejb.EJB; +import jakarta.xml.ws.WebServiceRef; +import jakarta.annotation.sql.DataSourceDefinition; +import jakarta.jms.JMSConnectionFactoryDefinition; +import jakarta.jms.JMSDestinationDefinition; +import jakarta.jms.ConnectionFactory; +import jakarta.jms.Queue; +import jakarta.persistence.PersistenceUnit; +import jakarta.persistence.EntityManagerFactory; + + +@MailSessionDefinition(name = "java:comp/myMailSession", + host = "smtp.gmail.com", + transportProtocol = "smtps", + properties = { + "mail.debug=true" +}) +@DataSourceDefinition(name="java:global/MyApp/MyDataSource", + className="@dbclassname@", + url="@dburl@", + user="@dbuser@", + password="@dbpassword@" + ) +@JMSConnectionFactoryDefinition( + description="Define ConnectionFactory JSPMyTestConnectionFactory", + interfaceName="jakarta.jms.ConnectionFactory", + name="java:global/JSPMyTestConnectionFactory", + user = "@user@", + password = "@password@" + ) +@JMSDestinationDefinition( + name = "java:app/jms/myappTopic", + interfaceName = "jakarta.jms.Topic", + destinationName = "MyPhysicalAppTopic" +) + +public class TestAppClient extends EETest +{ + private InitialContext initialContext; + private TSNamingContext nctx = null; + private Properties props = null; + @Resource(lookup="java:module/mybean") + private static TestBean bean; + @Resource(lookup="java:comp/myMailSession") + private static Session session; + @EJB + static DataStoreRemote dataStore; + @WebServiceRef(name="service/HelloService") + static HelloService service; + @Resource(lookup="java:app/jms/TestConnectionFactory") + private static ConnectionFactory testFac; + @Resource(lookup="java:app/jms/TestQ") + private static Queue testQueue; + @PersistenceUnit(unitName = "TEST-EM-APPCLIENT") + static EntityManagerFactory emf; + @Resource(lookup="java:global/MyApp/MyDataSource") + private static Object dataSource; + @Resource(lookup="java:global/JSPMyTestConnectionFactory") + private static Object connFactory; + @Resource(lookup="java:app/jms/myappTopic") + private static Object destination; + + + + private Object lookup(String jndiName) + throws NamingException + { + return this.initialContext.lookup(jndiName); + } + /* + * @class.setup_props: org.omg.CORBA.ORBClass; + * java.naming.factory.initial; + * generateSQL; + * + * @class.testArgs: -ap tssql.stmt + * + */ + public void setup(String[] args, Properties props) throws Fault { + this.props = props; + + try { + nctx = new TSNamingContext(); + logMsg("[Client] Setup succeed (got naming context)."); + } catch (Exception e) { + throw new Fault("Setup failed:", e); + } + } + + public static void main(String[] args) { + TestAppClient theTests = new TestAppClient(); + Status s = theTests.run(args, System.out, System.err); + s.exit(); + } + + /** + * @testName: testResourceLookup + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,ManagedBean annotation + * - should work as metadata-complete attribute is not applicable to it. + * + */ + public void testResourceLookup() throws Fault { + try { + + Object mybean = + nctx.lookup("java:module/mybean"); + logMsg("mybean"+mybean); + if(null == mybean){ + throw new Fault("lookup failed!"); + } + } + catch (Exception e) { + throw new Fault("lookup failed: " + e, e); + } + } + + /** + * @testName: testResourceAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,Resource annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testResourceAnnotation() throws Fault { + + try { + logMsg("bean"+bean); + if(null != bean){ + throw new Fault("ResourceAnnotation test failed!"); + } + + + } + catch (Exception e) { + throw new Fault("ResourceAnnotation test failed: " + e, e); + } + } + + /** + * @testName: testMailSession + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,Resource annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testMailSession() throws Fault { + + try { + + Object sess = + nctx.lookup("mail/Session"); + logMsg("sess"+sess); + if(null == sess){ + throw new Fault("lookup failed!"); + } + + } + catch (Exception e) { + throw new Fault("MailSession test failed: " + e, e); + } + } + + /** + * @testName: testMailSessionDefinition + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,MailSessionDefinition annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testMailSessionDefinition() throws Fault { + + try { + + //Session sess = + //(Session)nctx.lookup("java:comp/myMailSession"); + logMsg("session"+session); + //logMsg("mail.debug:"+session.getProperty("mail.debug")); + if(null != session){ + throw new Fault("MailSessionDefinition test failed!"); + } + + } + catch (Exception e) { + throw new Fault("MailSessionDefinition test failed: " + e, e); + } + } + + /** + * @testName: testEJBAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,EJB annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testEJBAnnotation() throws Fault { + + try { + + logMsg("datastore"+dataStore); + if(null != dataStore){ + throw new Fault("EJBAnnotation test failed!"); + } + + } + catch (Exception e) { + throw new Fault("EJBAnnotation test failed: " + e, e); + } + } + + /** + * @testName: testWebServiceRefAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,WebServiceRef annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testWebServiceRefAnnotation() throws Fault { + + try { + + + //logMsg("datastore"+dataStore); + logMsg("service"+service); + if(null != service){ + throw new Fault("WebServiceRefAnnotation test failed!"); + } + + } + catch (Exception e) { + throw new Fault("WebServiceRefAnnotation test failed: " + e, e); + } + } + + /** + * @testName: testDataSourceDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,DataSourceDefinition annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testDataSourceDefinitionAnnotation() throws Fault { + + try { + + + //logMsg("datastore"+dataStore); + //logMsg("service"+service); + //Object dataSource = + //nctx.lookup("java:global/MyApp/MyDataSource"); + if(dataSource != null){ + throw new Fault("DataSourceDefinition test failed!"); + } + } + catch (Exception e) { + throw new Fault("DataSourceDefinition test failed: " + e, e); + } + } + + /** + * @testName: testJMSConnectionFactoryDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,JMSConnectionFactoryDefinition annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testJMSConnectionFactoryDefinitionAnnotation() throws Fault { + + try { + + + //logMsg("datastore"+dataStore); + //logMsg("service"+service); + //Object connFactory = + //nctx.lookup("java:global/JSPMyTestConnectionFactory"); + logMsg("connFactory"+connFactory); + if(connFactory != null){ + throw new Fault("JMSConnectionFactoryDefinition test failed!"); + } + } + catch (Exception e) { + throw new Fault("JMSConnectionFactoryDefinition test failed: " + e, e); + } + } + + /** + * @testName: testJMSDestinationDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,JMSDestinationDefinition annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testJMSDestinationDefinitionAnnotation() throws Fault { + + try { + + + //logMsg("datastore"+dataStore); + //logMsg("service"+service); + //Object destination = + //nctx.lookup("java:app/jms/myappTopic"); + logMsg("destination"+destination); + if(destination != null){ + throw new Fault("JMSDestinationDefinition test failed!"); + } + } + catch (Exception e) { + throw new Fault("JMSDestinationDefinition test failed: " + e, e); + } + } + + /** + * @testName: testConnectionFactoryDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,ConnectionFactoryDefinition annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testConnectionFactoryDefinitionAnnotation() throws Fault { + + try { + + + //logMsg("datastore"+dataStore); + //logMsg("service"+service); + logMsg("testFac"+testFac); + if(testFac != null){ + throw new Fault("ConnectionFactoryDefinition test failed!"); + } + } + catch (Exception e) { + throw new Fault("ConnectionFactoryDefinition test failed: " + e, e); + } + } + + /** + * @testName: testAdministeredObjectDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,AdministeredObjectDefinition annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testAdministeredObjectDefinitionAnnotation() throws Fault { + + try { + + + //logMsg("datastore"+dataStore); + //logMsg("service"+service); + logMsg("testQueue"+testQueue); + if(testFac != null){ + throw new Fault("AdministeredObjectDefinition test failed!"); + } + } + catch (Exception e) { + throw new Fault("AdministeredObjectDefinition test failed: " + e, e); + } + } + + /** + * @testName: testPersistenceUnitDefinitionAnnotation + * + * @assertion_ids: JavaEE:SPEC:323 + * + * @test_Strategy: + * + * We check that: + * + * - When the meta-data complete attribute is set to true,PersistenceUnitDefinition annotation should be ignored + * - as it is one of the annotations to which metadat-complete is applicable. + * + */ + public void testPersistenceUnitDefinitionAnnotation() throws Fault { + + try { + + + //logMsg("datastore"+dataStore); + //logMsg("service"+service); + logMsg("emf"+emf); + if(emf != null){ + throw new Fault("PersistenceUnitDefinition test failed!"); + } + } + catch (Exception e) { + throw new Fault("PersistenceUnitDefinition test failed: " + e, e); + } + } + + + public void cleanup() throws Fault { + logMsg("[Client] cleanup()"); + } + + +} diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/TestBean.java.src b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/TestBean.java.src new file mode 100644 index 0000000000..92bdd4ffde --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/files/TestBean.java.src @@ -0,0 +1,53 @@ +/* + * Copyright (c) 2017, 2020 Oracle and/or its affiliates. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + */ + +package com.sun.ts.tests.appclient.deploy.metadatacomplete.testapp; + +import jakarta.annotation.ManagedBean; +import jakarta.annotation.PostConstruct; +import jakarta.annotation.PreDestroy; +import jakarta.resource.ConnectionFactoryDefinition; +import jakarta.resource.AdministeredObjectDefinition; + +@ConnectionFactoryDefinition( + name = "java:app/jms/TestConnectionFactory", + description = "application scoped jms connector resource definition", + interfaceName = "jakarta.jms.ConnectionFactory", + resourceAdapter="@raname@" +) +@AdministeredObjectDefinition( + name = "java:app/jms/TestQ", + description = "application scoped AdminObjectDefinition", + interfaceName = "jakarta.jms.Queue", + className = "com.sun.messaging.Queue", + resourceAdapter="@raname@") +@ManagedBean("mybean") +public class TestBean { + + public TestBean() { + System.out.println("TestBean : Constructor"); + } + + @PostConstruct + public void postConstruct() { + System.out.println("TestBean : postConstruct"); + } + + @PreDestroy + public void preDestroy() { + System.out.println("TestBean : preDestroy"); + } +} diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/persistence.xml b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/persistence.xml new file mode 100644 index 0000000000..75b0cd9f91 --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/persistence.xml @@ -0,0 +1,28 @@ + + + + + + jdbc/DB_no_tx + + diff --git a/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/sun-application-client.xml b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/sun-application-client.xml new file mode 100644 index 0000000000..0f6e979542 --- /dev/null +++ b/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/metadatacomplete/testapp/sun-application-client.xml @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/certificates/clientcert.jks b/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/certificates/clientcert.jks new file mode 100644 index 0000000000000000000000000000000000000000..09f5569c47a3e472d830625a54508a94d5f98054 GIT binary patch literal 2257 zcmc&#XH%027tNCbl2DY;K}w{F?FmJtC;?PL5JHs@6hxLL5Lzf|YE(mO15ac6dB|H1p=%-nPDmpkX)IcI-=M$ zK6zXTfgm7Y2z(dhW<#E01K@xH^cVmjAn*|QG(D4)8fZRb!S$JcFw^uoGNaQ}r#xbT*+A-m%u z2VdIk)9j%evc|LL9EVd1;;@J0zkXv-N3j?z!TDBi)JoJ$+${`BB5t3SMh=a}xS= zZ#?tI!KL#V(x-Nn9+zBuK;GszKVf7?{J~#wscX(Rp469MP9G5d427(jRGn6X5bZn0 zW*BwKfld>J<8|C|8Vieq>y3JZx|PY8xM(L@f^>Tju)REK2Md<&{!{bZg=Smf&d^nm zg-i|2$f+N!ik3C=Jh{5j;TCo9EK4b~`*NF{*ps^zVGPj?KwAW%Kkq6vlSSECvM4u3 z7MnHZ%xV@_=Z@FElNcOk#SDC~#EPz0x)dF_s9mL98MvkHuOar^tv1&|{Alt0wDk5I zeeEfqm`+|yV>9szMzf?0t>|E_E)K4vv4WPO0@+Lx5uwdT*x(3J6}`$+mr(b_ELLzoi%77GAP|beC#VQpaAAO!H3( zHjCiqg06WKyryYNNCy@2eznRE^{EKHEZ(WHzD;gleDx+ZAbv9P?#PBALyo;5im@}8 zsqeyWKSDdYLMwF)C`wF@_)@A+$iR=GABkDjl+%UQT_}9_pg2xo0;3z-QYl8XX$|jD zOkk!6Q6AK)7a47K3g;7K>?N!jvAx(1j$AWRB4Ub(Z`&72>v}6!C#;5xb2YdzBI#l= z7=6ZnZ6tP^fa^=TZ>6N-9Dmu^UDyeFIzu0(D}tMP_IzaiZtzTQ(m`7d~#Zh%;N)HN% zx&AS{RC%PYH6gW#)X}I^aGobWO0Vl{%=C3G3)?5Y0o8`reJ$=Lv}Vd`ow#6MC-QyB zt1-7$O3-)i{mzwWX$-}R!wmnzSgqxg-c0=%%w`x-anI(Q>B&+=^V>$pzf29>Ov*Cz zq@Kq69E1%fFJ74-?V4%Vsj1!b#UaAT&bjc}qPA@=YV!Q?os}|-&)pfz-Q*Phet#L4 zK~K{koVwZ*--fCSvb3unA;jg;)AsT>Wmy}JG!&|DMn2M!v->=BrBQnwq|Gdap?@Y) zm}^ZPE+=J-lPYSG^8GPrX3uES!AEM}GxpBD7R$9Z0pdTVh#;L+0aYOoSQHondjf_) zJu_fX01AaWjkT+STx=W);rQ@PE&xCs8m12x1#+;#%;9WksJZFC!$v8P{S+%9*Hzi> zja(5{O3}>2z9j`F5jDF5ki9k(bL8{RAK|kNLeTq&w^oABiKdBW8lvr&6StD zO{AG<>iwEW4I8Le9WFtgi%YfL8y4RkJj^pWbyuFo;57kd^TN_oh1)YQ;S>_^|} zW-v?BT1o`2=XLa!5Qn$J&FME>Zd-+YYnK>CaGssRlo`qcUg{dRyxJIPdkFev={xeS zwt~smh)LUv39p=WTAx!mWGmfn^ypAaj2nbqOLFpht2f{L?k&KJyA@FlpUpyLwJuA% zY$~GwAYUsvAR57h!T<o28$9T&s$Kc6c(0=2lk```kI=tCX~m4_^>QF zf_5Lt-Glq>2sdiIG8GJ3mRWg|kRpU8ecBC&O~AG3yZRH@(^^A86%m`6+MZh#jKamz zc?b1zxf4wjJsK0mB`*4VQ!!=0UNj*}=4wuM*XV`4Cbzoxxi2=$8I-t(oWX>NrACjV aN2^xEnzd)x&M^H7bqrttb?%;#-pt>D`u9=* literal 0 HcmV?d00001 diff --git a/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/certificates/clientcert.p12 b/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/certificates/clientcert.p12 new file mode 100644 index 0000000000000000000000000000000000000000..409e41e673587e2381ded8fdfe7958c5b2c616ae GIT binary patch literal 1615 zcmV-V2C(@sf(A2kx;s>GcIZ0;*S|y~<-^X=pwb0lP;Qtti>gC};O4;iJ9ZYc8h`9X{A8TqL=AoL- z?9N+iX5$_Ayw`nsB^=zGN~DUW?Y72c(I)0rKZXRbF=P*Cx`nsB+Ej+?;HAX~exhIzg4w3hxwIjNG=iz= z%|X^`1R-ZKc{)KA5(6h)EzyaC!>-v*Obr7E*ZiCY`W!^5>W_G}%y`3F&mi<3Kj_Sa zUo$ydR%%HTn(oiVGq$t^%qvdGaIt%hYuRSys>w(S)ROYxk(Xg9$6gZW)~ybmpZVwK zIC>#fGDg)SkNI|7JxBhjm1S~1%->>3wv~%;l+byf8+;u9^;=qPGmoZwK?K%N7%IOQu|x=w_mfDX zIAg9im~Fp4hJ1d(lzQvbKxw|H?D_b2zx7IIY|pVHQcX}T>kTL;Gl1)j?}%2M+KijB zsX!tkQ0*vLy;64d)9`aO0bFUf$u}~VF!8q-V%ew%6MruW!LyDURZ%5rC}8(o!`eEo z7STB=JT1jN%o$k>r>eNhd-*-U4>wG7(NASH3e3c8rRr{aG#YMaM02R0Lt`ntgDNI{ zUw9y61g=PJy%A0ff!aeKsTh{AHE?j6GWUK0sHz;NBhWdXf5;IGXXXZ3P%2Ta zkYX!*Ll1F|tCgf$dok}u0tLw;K`WtTQ_%%qF3bu47%S`8f~8d$`JY#t3~KXlxR_1j z+32VdcefI^NqT2MB@uKmE4Ef6S5qNamP1a-f0SEPu-m|=Z&+ibF`t4pwd<|*zWn5GLG9aJ&?-5X zT#zi%+lLZOd$15qm`hlNbR`&rAHMgAK3AX4XWoJ1a?aRN#A1G-vKpK<^l%|zhH3|> zQgTPbey`&?W_PRMB<|zJ5ufeIr}0zU`KNr|le2fU%NYM|=mtRG?4W!39VtgYzba zud!tvbKSLz*Bzj1!tCXSX*Ev)!T;>dRkw@k>%>Scm-qcBFJ|(_ai)hEhhd`MeVo{C z-xV3MiU+>K*Gmm_}qPsRWyWEShCj91hvc=-qe3YFh1nB4iWwHj>i}cP;>~ zs^F^^7xC%s7hz=c8=dY2X3mEB5wqx;U7jbLZVHrjxoIv%n#&Cr! zYC)_TU_W=dcbi}`>4^bbQ!RME;ne7Jb~8OPJ2>8gg$O;`9&gyhfr|iqhY#iqAVAOS zf@M_Vx#a9aaLPi=#O^+p*z!%V!?Q4y24f$rLyf67!TVu5)+TyzR_1t&=g&2o?Qp%l zieE1}5bi=OY|CJJor_7&`|d#AN85K^Mn-N{27^*VZUas>=1>+kVW!Yv z7>7fc$=A_P*gy~@!!FF_R9cjinU`LYpJym%AOjNQ5*7_E%~SBrOfJeVt}HG|%`H~& z%uCiY6f+P3$#VGI@9Ax=}hpS#$lqwX0zyJi1rrqGdySA8XQd)p6v0 z*ahd3O@W6bb2hD5b8*-ArPak^LJqNAyI5W?;a+m$qx{SxTk;qUL{3Ci^|2mjVrFDu zT&!pyZy*bdOj$k_F&2?)ZCi3zSFGea-THIww>6b>4UVTLA_pQcl>q~hks;Rj*Yk=M zN!_z=%A4#nOjDY2B>Cp@?&sHzR9}5S}frD z_0p@)i~c8j)!V3T(Y;~5WOIYGmx5V%-VUvIAN~KQM*Ls=#VXLAi9gN1dCRP>$~rE- z3l1q9eB58R&oQX~sQPK??U-xoR+{@Au>{rk;t z)2#2SD<64q!REonP1)XmpY(5G{M+Z%tLnO9+1b11e~;wu-@S6i_pN*KCN}dlcs=-V JxIjQ)2LO6WWJmx2 literal 0 HcmV?d00001 diff --git a/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/ts.jte b/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/ts.jte new file mode 100644 index 0000000000..11ee73d42f --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/ts.jte @@ -0,0 +1,2462 @@ +# +# Copyright (c) 2006, 2022 Oracle and/or its affiliates and others. +# All rights reserved. +# +# This program and the accompanying materials are made available under the +# terms of the Eclipse Public License v. 2.0, which is available at +# http://www.eclipse.org/legal/epl-2.0. +# +# This Source Code may also be made available under the following Secondary +# Licenses when the conditions for such availability set forth in the +# Eclipse Public License v. 2.0 are satisfied: GNU General Public License, +# version 2 with the GNU Classpath Exception, which is available at +# https://www.gnu.org/software/classpath/license.html. +# +# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 +# + +######################################################################### +## +## JavaTest Environment file for Java EE Compatibility Test Suite +## +## Environment specific properties in this file will likely +## have to be modified prior to running the Java EE CTS. +## Instructions for modifying these properties are contained in this +## file. +## +## This file is processed by an external tool that helps generate the +## CTS documents. Therefore this file has a standard format that must +## be followed. This file is a standard Java Properties file with +## very specific comment formatting. Users can write property specific +## comments by using the property name and an ampersand (@). As an +## example the following comment applies to the foo.bar property: +## # @foo.bar - This is a comment pertaining to foo.bar +## # that spans multiple lines. +## This comment must be preceded by a single hash (#) character and +## the property name must be prepended with an ampersand (@). The +## comment can appear anywhere in the ts.jte file. If users have +## comments that belong in ts.jte but DO NOT pertain to a particular +## property the user must start the comment with at least 2 hash (#) +## characters. The following is a valid non-property comment: +## ## A valid non-property comment +## ## that spans multiple lines. +######################################################################### + +######################################################################### +## @jte.version This version denotes the bundle this JTE was +## originally included with. The version matches the ID +## in the bundle name. It can be used to identify a +## mismatched JTE file. This value is filled in during +## the build process as part of sanitizing the jte file. +######################################################################### +jte.version=@JTE_VERSION@ + +######################################################################## +## Javatest batch mode work directory and report directory, and policy for +## handling existing work and report directories. These properties affects +## runclient and report targets, but not gui target. +## To disable generating test report, unset report.dir, or set it to "none" +## either here or from command line, as in the following command: +## ant runclient -Dreport.dir="none" +## +# @work.dir The directory used to store Javatest test results and test +# information. +# @report.dir The directory used to store Javatest summary reports of +# test results. +# @if.existing.work.report.dirs specifies how existing work.dir and +# report.dir will be handled, and it must be one of the following values: +# overwrite overwrites all content in work.dir and report.dir +# backup moves all content in work.dir and report.dir to +# work.dir_time_day_bak and report.dir_time_day_bak, +# respectively +# append reuses and preserves the existing work.dir and report.dir +# auto lets the build files decide which mode to use +# (overwrite, backup or append). the value is determined +# like this: +# if.existing.work.report.dirs == auto +# if in CTS workspace +# if.existing.work.report.dirs = overwrite +# else we are in a distribution bundle +# if.existing.work.report.dirs = append +# end if +# else +# if.existing.work.report.dirs = value in this file +# end if +######################################################################## +work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork +report.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTReport +if.existing.work.report.dirs=auto + +######################################################################## +# @javatest.timeout.factor This property specifies the scale factor used by +# Javatest to adjust the time JavaTest will wait for a given test to +# complete before returning failure. For instance if the default test timeout +# is 5 minutes, this value will be multiplied by 5 minutes to determine +# the total timeout delay. Note: this value only works with Javatest's +# batch mode (runclient). When using the Javatest GUI users must change +# this timeout factor in the GUI. Configure -> Edit Configuration -> View +# -> choose Standard Values -> select tab Execution -> set Time Factor. +# +# Note that javatest.timeout.factor can be a positive real number, such as 1.5 +######################################################################## +javatest.timeout.factor=1 + +######################################################################## +## Level of Vendor Java EE Implementation +# @javaee.level The level of Java EE support for the implementation under test. +# This property serves two purposes: First, it is used to determine +# whether the impl under test is a Java EE Full profile (full) or Java +# EE Web profile (web). Either "full" or "web" must be specified in +# the list values. "full" will tell the harness to deploy ears. "web" +# will tell the harness to deploy wars. +# This property is also used to help determine which apis (in the +# signature tests) are to be tested. +# +# NOTE: This property does not determine which CTS tests to run for +# different profiles and optional technologies. That is done using +# keywords. Please refer to the keywords functionality in the CTS +# User's Guide for information on how to use keywords when +# running CTS tests. +# +# Currently, there are 4 settings supported for this property: +# 1. full: This is the minimal set of signature requirements that vendors +# must support. Specifying a javaee.level of "full" with nothing +# else implies there are NO additional technologies existing within +# the vendors implementation. Again, "full" only covers the +# REQUIRED Technologies for Jakarta EE 8 Full profile +# ex/ javaee.level=full +# +# 2. web : This is the minimal set of signature requirements that vendors +# must support for Web Profile. Specifying a javaee.level of "web" +# with nothing else implies there are NO additional technologies +# existing within the vendors implementation. Again, "web" only +# covers REQUIRED Technologies for Jakarta EE 8 Web profile +# ex/ javaee.level=web +# +# 3. full + optional_technologies: This covers REQUIRED Technologies for +# Java EE 8 Full Profile and any combination of the optional +# technologies. +# Known optional technologies for CTS8 full profile include: +# "jaxr". +# ex 1/ javaee.level=full jaxr +# ex 2/ javaee.level=full jaxr +# ex 3/ javaee.level=full +# ex 4/ etc... +# +# 4. web + optional_technologies: This covers REQUIRED Technologies for +# Java EE 8 Web Profile and any combination of optional +# technologies. +# Known optional technologies for Web Profile include: +# "jaxr", "connector", "jaxb", +# "jms", "javamail", "jacc", "jaspic", "wsmd" +# ex 1/ javaee.level=web connector jms jacc +# ex 2/ javaee.level=web jaspic +# ex 3/ javaee.level=web jms connector +# ex 4/ etc... +# +# Note 1: spaces separate multiple entries +# +# Note 2: optional technologies for full/javaee profile are listed +# in the Java EE 8 spec, in Table EE.6-1. Currently, the only +# optional technologies for full profile are: "jaxr" (JAXR 1.0) +# +# Note 3: The list of optional technologies for Web Profile includes any OPTIONAL +# technology explicitly called out in the Web Profile spec (if applicable) +# as well as any additional technology which is listed within +# JavaEE Profile 8 spec *but* not included/Required in the +# Web Profile spec. +# +# Note 4: Two different examples of javaee.level are provided immediately +# following this comment block. One is for running CTS8 against +# the EE 8 (full) Profile RI and the other is for running CTS8 +# against the EE 8 Web Profile RI. Notice that optional technologies +# are supplied here since the RI for CTS8 contains those optional +# technologies in it. It's very possible vendors may provider different +# optional technologies in their implementations. If so, the list of +# optional technologies will need to be adjusted here to suite each +# vendors implementation. +# +# Note 5: For EE 8 (RI) Web Profile, you can uncomment and use the line +# below which starts with: javaee.level=web .... +# +# IMPORTANT: when testing Web Profile - be sure to adjust the +# "optional.tech.packages.to.ignore" property accordingly. +# (see comments for optional.tech.packages.to.ignore below) +# +############################################################################### +#javaee.level=web connector jaxws jaxb javamail jacc jaspic wsmd +javaee.level=full + + +######################################################################## +## Settings for Vendor Java EE Implementation +# @javaee.home The location of the vendor's Java EE platform +# implementation. +# @orb.host Hostname of the machine running the vendor's +# implementation. +# @orb.port The port number the vendor implementation is listening +# to for service requests. +######################################################################## +javaee.home= +orb.host=localhost +orb.port=3699 + +######################################################################## +## JVMOPTS_RUNTESTCOMMAND is a marker that implementations may replace with +# the JVM options to pass when starting JVMs for running tests. +# This is intended to be used for implementations convencience. +# See file docker/run_jakartaeetck.sh for an example. +######################################################################## + +######################################################################## +## Settings for Sun RI Java EE Implementation +# @javaee.home.ri The location of the RI. +# @orb.host Hostname of the machine running the RI. +# @orb.port The port number the RI is listening to for service +# requests. +######################################################################## +javaee.home.ri= +orb.host.ri=localhost +orb.port.ri=3700 + +################################################################### +################################################################### +################################################################### +## RI SPECIFIC PROPERTIES LIVE BELOW +################################################################### +################################################################### +################################################################### + +############################################################### +# @ts.display -- location to display CTS output on Unix +############################################################### +ts.display=:0.0 + +########################################################################### +# @endorsed.dirs using Java SE 6 or above and you provide newer versions +# of technologies than those contained in Java SE 6, verify +# that the property endorsed.dirs is set to the location of +# the VI api jars for those technologies you wish to +# override. For example, Java SE 6 contains an +# implementation of JAXWS 2.0 which will conflict with +# JAXWS 2.1, therefore this property would need to be set +# so that JAXWS 2.1 would be used during the building of +# tests and during test execution. +# +# @endorsed.dirs.ri If using Java SE 6 or above and you provide newer versions +# of technologies than those contained in Java SE 6, verify +# that the property endorsed.dirs is set to the location of +# the RI api jars for those technologies you wish to +# override. For example, Java SE 6 contains an +# implementation of JAXWS 2.0 which will conflict with +# JAXWS 2.1, therefore this property would need to be set +# so that JAXWS 2.1 would be used during the building of +# tests and during test execution. +########################################################################### +endorsed.dirs=${javaee.home}/modules/endorsed +endorsed.dirs.ri=${javaee.home.ri}/modules/endorsed + +############################################################### +## Config params needed for Java EE RI asadmin +## You must change these values as needed +## +# @ri.admin.user -- The Java EE RI asadmin user id +# @ri.admin.passwd -- The Java EE RI asadmin user password +# @ri.admin.host -- The Java EE RI host +# @ri.admin.port -- The Java EE RI port +# @ri.admin -- The Java EE RI admin command +# @ri.server -- The Java EE RI server instance being used +# @ri.domain.dir -- Points to where your domains are installed. +# @ri.domain.name -- The Java EE RI domain being used +# @ri.domain -- The Java EE RI domain path being used +# @ri.asenv.loc -- location of asenv.conf or asenv.bat +# @ri.imqbin.loc -- location of the IMQ bin directory +# @ri.lib -- Library directory for other Java EE RI +# jars +# @ri.imq.share.lib -- Shared library directory for imq +# @ri.jvm.options -- Java options needed by the Java EE RI +# note, the second option is not needed +# but is required to work around asadmin +# command line parsing issues. The +# xxxlogin and xxxpassword are used +# to set known server side creds for use +# with connector tests. +# @ri.applicationRoot-- Location of application repository +# Only needed when running on windows +# @ri.and.vi.run.on.same.host - set to true if interop tests are run +# with both RI and VI on same machine. set to +# false if they are run on different machines. +# This is used to work around an orb issue +# specific to running VI and RI on same box. +# +# @ri.orb.iiop.orbserverid - This is used to set a similarly +# named jvm option in the RI. It is only used +# when we are running interop where remote EJBs +# try to access target EJB's on the same host with +# zero port configuration for ssl. +# This only gets used when ri.and.vi.run.on.same.host=true. +# The value is to be an ORB server id. +############################################################### +ri.admin.user=admin +ri.admin.passwd= +ri.admin.host=${orb.host.ri} +ri.admin.port=4848 +ri.admin=${javaee.home.ri}/bin/asadmin +ri.server=server +ri.domain.dir=${javaee.home.ri}/domains +ri.domain.name=domain1 +ri.domain=${ri.domain.dir}/${ri.domain.name} +ri.asenv.loc=${javaee.home.ri}/config +ri.imqbin.loc=${javaee.home.ri}/../mq/bin +ri.lib=${javaee.home.ri}/lib +ri.log.file.location=${ri.domain}/logs +ri.modules=${javaee.home.ri}/modules +ri.imq.share.lib=${javaee.home.ri}/../mq/lib +ri.jvm.options=-Doracle.jdbc.J2EE13Compliant=true:-Xmx4096m:-Dj2eelogin.name=${user}:-Dj2eelogin.password=${password}:-Deislogin.name=${user1}:-Deislogin.password=${password1}:-Dtest.ejb.stateful.timeout.wait.seconds=${test.ejb.stateful.timeout.wait.seconds}:-DwebServerPort.2=${webServerPort.2}:-DwebServerHost.2=${webServerHost.2}:-Dcsiv2.save.log.file=${harness.log.traceflag}:-Djavax.xml.accessExternalStylesheet=all:-Djavax.xml.accessExternalDTD=file,http +ri.jvm.options.remove=-Xmx512m:${ri.jvm.options} +ri.java.endorsed.dirs=${endorsed.dirs.ri} +ri.applicationRoot=c: +ri.and.vi.run.on.same.host=true +ri.orb.iiop.orbserverid=200 + +############################################################### +## Config params needed for Java EE VI asadmin +## You must change these values as needed +## +# @vi.admin.user -- The Java EE VI asadmin user id +# @vi.admin.passwd -- The Java EE VI asadmin user password +# @vi.admin.host -- The Java EE VI host +# @vi.admin.port -- The Java EE VI port +# @vi.admin -- The Java EE VI admin command +# @vi.server -- The Java EE VI server instance being used +# @vi.domain.dir -- Points to where your domains are installed. +# @vi.domain.name -- The Java EE VI domain being used +# @vi.domain -- The Java EE VI domain path being used +# @vi.asenv.loc -- location of asenv.conf or asenv.bat +# @vi.imqbin.loc -- location of the IMQ bin directory +# @vi.lib -- Library directory for other Java EE VI +# jars +# @vi.imq.share.lib -- Shared library directory for imq +# @vi.jvm.options -- Java options needed by the Java EE VI +# note, the second option is not needed +# but is required to work around asadmin +# command line parsing issues. The +# xxxlogin and xxxpassword are used +# to set known server side creds for use +# with connector tests. +# @vi.applicationRoot-- Location of application repository +# Only needed when running on windows +############################################################### +vi.admin.user=admin +vi.admin.passwd= +vi.admin.host=${orb.host} +vi.admin.port=4848 +vi.admin=${javaee.home}/bin/asadmin +vi.server=server +vi.domain.dir=${javaee.home}/domains +vi.domain.name=domain1 +vi.domain=${vi.domain.dir}/${vi.domain.name} +vi.asenv.loc=${javaee.home}/config +vi.imqbin.loc=${javaee.home}/../mq/bin +vi.lib=${javaee.home}/server/lib +vi.log.file.location=${vi.domain}/logs +vi.modules=${javaee.home}/modules +vi.imq.share.lib=${javaee.home}/../mq/lib +vi.jvm.options=-Doracle.jdbc.J2EE13Compliant=true:-Xmx4096m:-Dj2eelogin.name=${user}:-Dj2eelogin.password=${password}:-Deislogin.name=${user1}:-Deislogin.password=${password1}:-Dtest.ejb.stateful.timeout.wait.seconds=${test.ejb.stateful.timeout.wait.seconds}:-DwebServerPort.2=${webServerPort.2}:-DwebServerHost.2=${webServerHost.2}:-Dcsiv2.save.log.file=${harness.log.traceflag}:-Djavax.xml.accessExternalStylesheet=all:-Djavax.xml.accessExternalDTD=file,http +vi.jvm.options.remove=-Xmx512m:${vi.jvm.options} +vi.java.endorsed.dirs=${endorsed.dirs} +vi.applicationRoot=c: + +############################################################### +## Config params needed for Sun Java System Application Server +## (SJSAS) asadmin. You must change these values as needed +## only if you are testing against SJSAS app server +## (javaee.home is pointing to SJSAS). +# +# @s1as.admin.user -- The SJSAS asadmin user id +# @s1as.admin.passwd -- The SJSAS asadmin user password +# @s1as.admin.host -- The SJSAS host +# @s1as.admin.port -- The SJSAS port +# @s1as.admin -- The SJSAS admin command +# @s1as.server -- The SJSAS server instance being used +# @s1as.domain.dir -- Points to where your domains are installed. +# @s1as.domain.name -- The SJSAS domain being used +# @s1as.domain -- The SJSAS domain path being used +# @s1as.asenv.loc -- location of asenv.conf or asenv.bat +# @s1as.imqbin.loc -- location of the IMQ bin directory +# @s1as.lib -- Library directory for other Java EE RI +# jars +# @s1as.imq.share.lib -- Shared library directory for imq +# @s1as.jvm.options -- Java options needed by SJSAS +# The xxxlogin and xxxpassword are used +# to set known server side creds for use +# with connector tests. +# @s1as.applicationRoot-- Location of application repository +# Only needed when running on windows +############################################################### +s1as.admin.user=admin +s1as.admin.passwd= +s1as.admin.host=${orb.host} +s1as.admin.port=4848 +s1as.admin=${javaee.home}/bin/asadmin +s1as.server=server +s1as.domain.dir=${javaee.home}/domains +s1as.domain.name=domain1 +s1as.domain=${s1as.domain.dir}/${s1as.domain.name} +s1as.asenv.loc=${javaee.home}/config +s1as.imqbin.loc=${javaee.home}/../mq/bin +s1as.lib=${javaee.home}/lib +s1as.modules=${javaee.home}/modules +s1as.imq.share.lib=${javaee.home}/../mq/lib +s1as.jvm.options=-Doracle.jdbc.J2EE13Compliant=true:-Xmx4096m:-Dj2eelogin.name=${user}:-Dj2eelogin.password=${password}:-Deislogin.name=${user1}:-Deislogin.password=${password1}:-Dtest.ejb.stateful.timeout.wait.seconds=${test.ejb.stateful.timeout.wait.seconds}:-DwebServerPort.2=${webServerPort.2}:-DwebServerHost.2=${webServerHost.2} +s1as.jvm.options.remove=-Xmx512m:${s1as.jvm.options} +s1as.java.endorsed.dirs=${endorsed.dirs} +s1as.applicationRoot=c: + +############################################################### +# @sjsas.das.orb.port -- ORB port number for the DAS +# @sjsas.das.orb.host -- ORB host name for the DAS +# @sjsas.das.webServerPort -- HTTP listener port for the DAS +# @sjsas.das.securedWebServicePort -- HTTPS listener port for the DAS +# @sjsas.nodeagent.name -- Name of node agent used by +# the remote instance. +# @sjsas.nodeinstance.name -- Name of the remote instance +# @sjsas.master.password -- Used to create a node agent only +# applicable to EE. Defaults to changeit. This +# can be changed at EE install time. +# @sjsas.instance.config.dir -- config directory used by the intsance +# being tested. +# For PE/DAS = config +# For remote instance = config +# @sjsas.cts.timer.resource -- Backend to use when we are using java2db with +# the CMP tests for the jdbc/DBTimer resource +# @sjsas.cmp.backend -- Backend to use when we are using java2db with +# the CMP tests +# @sjsas.node.agent.dir.name -- The name of the node agent directory to use. +# This value will be used on Windows only and +# ignored on non-Windows platforms. The default +# is 'n' meaning the create-node-agent command +# will pass the --agentdir argument with a value +# of ${s1as.applicationRoot}\${sjsas.node.agent.dir.name}. +# @sjsas.env.type -- CTS test configuration. Possible values are: +# das (for PE or DAS) +# remote (for remote intance) +# cluster (for cluster config not yet supported) +# @s1as.targets -- Instance(s) to deploy tests +# Supports multiple instances, For example: +# s1as.targets=server server-1 +############################################################### +sjsas.das.orb.port=3700 +sjsas.das.orb.host=${orb.host} +sjsas.das.webServerPort=8000 +sjsas.das.securedWebServicePort=1043 +sjsas.nodeagent.name=node-agent-1 +sjsas.nodeinstance.name=server-1 +sjsas.master.password=changeit +sjsas.instance.config.dir=config +sjsas.cts.timer.resource=derby +sjsas.cmp.backend=derby +sjsas.node.agent.dir.name=n + +sjsas.env.type=das +#sjsas.env.type=remote + +s1as.targets=${s1as.server} +#s1as.targets=${sjsas.nodeinstance.name} + +############################################################### +# @s1as.pe.jmsServer -- name of the JMS server the RI/PE +# @s1as.se.jmsServer -- name of the JMS server for SE/EE +############################################################### +s1as.pe.jmsServer=imqbroker +s1as.se.jmsServer=imqbroker +#s1as.se.jmsServer=${s1as.domain.name}_${s1as.server} + +############################################################### +# @extension.dir - The extension directory for the app +# server under test. This does not apply +# to the RI. +# +# Note: App server vendors will need to set this to their +# app server's extension directory. The CTS config.vi +# target will copy the CTS library jars to this location. +############################################################### +extension.dir=${s1as.domain}/lib + +############################################################### +# @instance.listenerName - Default value for the iiop listener +# for your instance. Users will +# most likely not need to change this. +############################################################### +instance.listenerName=orb-listener-1 + +############################################################### +# @tz - your local timezone. For valid values, consult your +# Operating System documentation. +############################################################### +tz=US/Eastern + +############################################################### +# @jdbc.lib.class.path - This property is used by the +# database.classes properties to point to +# where the JDBC drivers live. +############################################################### +jdbc.lib.class.path=${ts.home}/internal/lib + +############################################################### +## The following section is for CTS Database configuration +## For each database that you will test, configure the following: +## Here is an example using derby: Users will need to +## replace derby with the appropriate DB name. +# @derby.dbName -- Database Name +# @derby.server -- Database Server +# @derby.port -- Database Server port +# @derby.dml.file -- DML file used for CTS test cases +# @derby.user -- User Id configured +# @derby.passwd -- User password configured +# @derby.url -- URL to the cts database +# @derby.driver -- DriverManager driver +# @derby.classes -- CLASSPATH to JDBC driver classes +# @derby.poolName -- Name of pool configured in the Java EE +# RI (do not change!) +# @derby.dataSource -- DataSource driver +# @derby.properties -- Any additional JDBC driver required +# properties +# @derby.startup.delay-- delay to wait for DB to start + +############################################################### + +## +## Info for Cloudscape 10/Derby +## +derby.dbName=derbyDB +derby.server=${orb.host} +derby.port=1527 +derby.port.ri=1527 +derby.dml.file=derby/derby.dml.sql +derby.user=cts1 +derby.passwd=cts1 +derby.url=jdbc:derby://${derby.server}:${derby.port}/${derby.dbName};create=true +derby.driver=org.apache.derby.jdbc.ClientDriver +derby.home=${javaee.home}/../javadb +derby.system.home=${derby.home}/databases +derby.classpath=${ts.home}/lib/dbprocedures.jar${pathsep}${derby.home}/lib/derbynet.jar${pathsep}${derby.home}/lib/derbyshared.jar${pathsep}${derby.home}/lib/derbytools.jar +derby.classes=${derby.home}/lib/derbyclient.jar${pathsep}${derby.home}/lib/derbyshared.jar${pathsep}${derby.home}/lib/derbytools.jar +derby.poolName=cts-derby-pool +derby.dataSource=org.apache.derby.jdbc.ClientDataSource +derby.properties=DatabaseName\=\"${derby.dbName}\":user\=${derby.user}:password\=${derby.passwd}:serverName\=${derby.server}:portNumber=${derby.port} +derby.startup.delay=5 + +# +# Cloudscape 10 /Derby embedded driver +# +derbyEmbedded.dbName=/tmp/DerbyDB +derbyEmbedded.server=${orb.host} +derbyEmbedded.port=1527 +derbyEmbedded.dml.file=derby/derby.dml.sql +derbyEmbedded.user=cts1 +derbyEmbedded.passwd=cts1 +derbyEmbedded.url=jdbc:derby:${derbyEmbedded.dbName};create=true +derbyEmbedded.driver=org.apache.derby.jdbc.EmbeddedDriver +derbyEmbedded.classes=${javaee.home}/../javadb/lib/derby.jar${pathsep}${javaee.home}/../javadb/lib/derbyshared.jar${pathsep}${javaee.home}/../javadb/lib/derbytools.jar${pathsep}${ts.home}/lib/dbprocedures.jar +derbyEmbedded.poolName=cts-derbyEmbedded-pool +derbyEmbedded.dataSource=org.apache.derby.jdbc.EmbeddedDataSource +derbyEmbedded.pool.url='jdbc\\:derby\\:${derbyEmbedded.dbName}\\;create=true' +derbyEmbedded.properties=DatabaseName\=\"${derbyEmbedded.dbName}\":user\=${derbyEmbedded.user}:password\=${derbyEmbedded.passwd} + + +## +## Info for DB2 (8.1 type 2 driver) +## +db2.dbName=cts +db2.server=${orb.host} +db2.port=50000 +db2.dml.file=db2/db2.dml.sql +db2.user=db2inst1 +db2.passwd=ibmdb2 +db2.url=jdbc:db2:${db2.dbName} +db2.driver=com.ibm.db2.jcc.DB2Driver +db2.classes=${jdbc.lib.class.path}/db2jcc.jar:${jdbc.lib.class.path}/db2jcc_license_cu.jar:${jdbc.lib.class.path}/db2java.zip +db2.poolName=cts-db2-pool +db2.dataSource=com.ibm.db2.jcc.DB2SimpleDataSource +db2.properties=user=${db2.user}:password=${db2.passwd}:databaseName=${db2.dbName}:driverType=2:deferPrepares\=false + +## +## Info for db2 using the DataDirect driver +## +db2DD.dbName=cts +db2DD.server=${orb.host} +db2DD.port=50000 +db2DD.dml.file=db2/db2.dml.sql +db2DD.user=db2inst1 +db2DD.passwd=ibmdb2 +db2DD.url=jdbc:datadirect:db2://${db2DD.server}:${db2DD.port};DatabaseName\=${db2DD.dbName} +db2DD.driver=com.ddtek.jdbc.db2.DB2Driver +db2DD.classes=${jdbc.lib.class.path}/util.jar${pathsep}${jdbc.lib.class.path}/db2.jar${pathsep}${jdbc.lib.class.path}/base.jar +db2DD.poolName=cts-db2-DataDirect-pool +db2DD.dataSource=com.ddtek.jdbcx.db2.DB2DataSource +db2DD.properties=user\=${db2DD.user}:password\=${db2DD.passwd}:ServerName\=${db2DD.server}:portNumber\=${db2DD.port}:databasename\=${db2DD.dbName} + +## +## Info for db2 using the Sun driver +## +db2Sun.dbName=cts +db2Sun.server=${orb.host} +db2Sun.port=50000 +db2Sun.dml.file=db2/db2.dml.sql +db2Sun.user=db2inst1 +db2Sun.passwd=ibmdb2 +db2Sun.url=jdbc:sun:db2://${db2Sun.server}:${db2Sun.port};DatabaseName\=${db2Sun.dbName} +db2Sun.driver=com.sun.sql.jdbc.db2.DB2Driver +db2Sun.classes=${jdbc.lib.class.path}/smdb2.jar +db2Sun.poolName=cts-db2-Sun-pool +db2Sun.dataSource=com.sun.sql.jdbcx.db2.DB2DataSource +db2Sun.properties=user\=${db2Sun.user}:password\=${db2Sun.passwd}:ServerName\=${db2Sun.server}:portNumber\=${db2Sun.port}:databasename\=${db2Sun.dbName} + +## +## Info for Microsoft SQL Server +## +mssqlserver.dbName=cts +mssqlserver.server=${orb.host} +mssqlserver.port=1433 +mssqlserver.dml.file=mssqlserver/mssqlserver.dml.sql +mssqlserver.user=guest +mssqlserver.passwd=guest +mssqlserver.url=jdbc:microsoft:sqlserver://${mssqlserver.server}:${mssqlserver.port} +mssqlserver.driver=com.microsoft.sqlserver.jdbc.SQLServerDriver +mssqlserver.classes=${jdbc.lib.class.path}/sqljdbc.jar +mssqlserver.poolName=cts-mssqlserver-pool +mssqlserver.dataSource=com.microsoft.sqlserver.jdbc.SQLServerDataSource +mssqlserver.properties=user\=${mssqlserver.user}:password\=${mssqlserver.passwd}:ServerName\=${mssqlserver.server}:portNumber\=${mssqlserver.port} + + +## +## Info for Microsoft SQL Server using the DataDirect driver +## +mssqlserverDD.dbName=cts +mssqlserverDD.server=${orb.host} +mssqlserverDD.port=1433 +mssqlserverDD.dml.file=mssqlserver/mssqlserver.dml.sql +mssqlserverDD.user=guest +mssqlserverDD.passwd=guest +mssqlserverDD.url=jdbc:datadirect:sqlserver://${mssqlserverDD.server}:${mssqlserverDD.port} +mssqlserverDD.driver=com.ddtek.jdbc.sqlserver.SQLServerDriver +mssqlserverDD.classes=${jdbc.lib.class.path}/util.jar${pathsep}${jdbc.lib.class.path}/sqlserver.jar${pathsep}${jdbc.lib.class.path}/base.jar +mssqlserverDD.poolName=cts-mssqlserver-DataDirect-pool +mssqlserverDD.dataSource=com.ddtek.jdbcx.sqlserver.SQLServerDataSource +mssqlserverDD.properties=user\=${mssqlserverDD.user}:password\=${mssqlserverDD.passwd}:ServerName\=${mssqlserverDD.server}:portNumber\=${mssqlserverDD.port}:selectMethod\=cursor + +## +## Info for Microsoft SQL Server using the Inet driver +## +mssqlserverInet.dbName=cts1 +mssqlserverInet.server=${orb.host} +mssqlserverInet.port=1433 +mssqlserverInet.dml.file=mssqlserver/mssqlserver.dml.sql +mssqlserverInet.user=cts1 +mssqlserverInet.passwd=cts1 +mssqlserverInet.url=jdbc:inetdae7:${mssqlserverInet.server}:${mssqlserverInet.port} +mssqlserverInet.driver=com.inet.tds.TdsDriver +mssqlserverInet.classes=${jdbc.lib.class.path}/Merlia.jar +mssqlserverInet.poolName=cts-mssqlserver-Inet-pool +mssqlserverInet.dataSource=com.inet.tds.TdsDataSource +mssqlserverInet.properties=user\=${mssqlserverInet.user}:password\=${mssqlserverInet.passwd}:ServerName\=${mssqlserverInet.server}:port\=${mssqlserverInet.port} + +## +## Info for Microsoft SQL Server using the Sun driver +## +mssqlserverSun.dbName=cts +mssqlserverSun.server=${orb.host} +mssqlserverSun.port=1433 +mssqlserverSun.dml.file=mssqlserver/mssqlserver.dml.sql +mssqlserverSun.user=guest +mssqlserverSun.passwd=guest +mssqlserverSun.url=jdbc:sun:sqlserver://${mssqlserverSun.server}:${mssqlserverSun.port} +mssqlserverSun.driver=com.sun.sql.jdbc.sqlserver.SQLServerDriver +mssqlserverSun.classes=${jdbc.lib.class.path}/smsqlserver.jar +mssqlserverSun.poolName=cts-mssqlserver-Sun-pool +mssqlserverSun.dataSource=com.sun.sql.jdbcx.sqlserver.SQLServerDataSource +mssqlserverSun.properties=user\=${mssqlserverSun.user}:password\=${mssqlserverSun.passwd}:ServerName\=${mssqlserverSun.server}:portNumber\=${mssqlserverSun.port}:selectMethod\=cursor + +## +## Info for MYSQL driver +## +mysql.dbName=cts +mysql.server=${orb.host} +mysql.port=3306 +mysql.dml.file=mysql/mysql.dml.sql +mysql.user=cts1 +mysql.passwd=cts1 +mysql.url=jdbc:mysql://${mysql.server}:${mysql.port}/${mysql.dbName} +mysql.driver=com.mysql.jdbc.Driver +mysql.classes=${jdbc.lib.class.path}/mysql-connector-java-5.1.42-bin.jar +mysql.poolName=cts-mysql-pool +mysql.dataSource=com.mysql.jdbc.jdbc2.optional.MysqlDataSource +mysql.properties=user\=${mysql.user}:password\=${mysql.passwd}:DatabaseName\=${mysql.dbName}\:ServerName\=${mysql.server}\:port\=${mysql.port}\:jdbcCompliantTruncation\=false + +## +## Info for Oracle DataDirect +## +oracleDD.dbName=ora817 +oracleDD.server=${orb.host} +oracleDD.port=1521 +oracleDD.dml.file=oracle/oracle.dml.sql +oracleDD.user=la +oracleDD.passwd=la +oracleDD.url=jdbc:datadirect:oracle://${oracleDD.server};SID=${oracleDD.dbName} +oracleDD.driver=com.ddtek.jdbc.oracle.OracleDriver +oracleDD.classes=${jdbc.lib.class.path}/base.jar${pathsep}${jdbc.lib.class.path}/oracle.jar${pathsep}${jdbc.lib.class.path}/util.jar +oracleDD.poolName=cts-oracle-DataDirect-pool +oracleDD.dataSource=com.ddtek.jdbcx.oracle.OracleDataSource +oracleDD.properties=user\=${oracleDD.user}:password\=${oracleDD.passwd}:SID\="${oracleDD.dbName}":serverName=${oracleDD.server}:portNumber=${oracleDD.port} + +## +## Info for Oracle thin +## +oracle.dbName=cts +oracle.server=${orb.host} +oracle.port=1521 +oracle.dml.file=oracle/oracle.dml.sql +oracle.user=cts1 +oracle.passwd=cts1 +oracle.url=jdbc:oracle:thin:@${oracle.server}:${oracle.port}:${oracle.dbName} +oracle.driver=oracle.jdbc.OracleDriver +oracle.classes=${jdbc.lib.class.path}/ojdbc8.jar +oracle.poolName=cts-oracle-pool +oracle.dataSource=oracle.jdbc.pool.OracleDataSource +oracle.pool.url=jdbc\\:oracle\\:thin\\:@${oracle.server}\\:${oracle.port}\\:${oracle.dbName} +oracle.properties=user\=${oracle.user}:password\=${oracle.passwd}:URL\=\"${oracle.pool.url}\" + +# +# Info for Oracle oci driver +# +oracleOCI.dbName=cts1 +oracleOCI.server=${orb.host} +oracleOCI.port=1521 +oracleOCI.dml.file=oracle/oracle.dml.sql +oracleOCI.user=cts1 +oracleOCI.passwd=cts1 +oracleOCI.url=jdbc:oracle:oci:@${oracleOCI.dbName} +oracleOCI.driver=oracle.jdbc.OracleDriver +oracleOCI.classes=${jdbc.lib.class.path}/ojdbc8.jar +oracleOCI.poolName=cts-oracle-oci-pool +oracleOCI.dataSource=oracle.jdbc.pool.OracleDataSource +oracleOCI.pool.url=jdbc\\:oracle\\:oci\\:@${oracleOCI.dbName} +oracleOCI.properties=user\=${oracleOCI.user}:password\=${oracleOCI.passwd}:URL\=\"${oracleOCI.pool.url}\" + +## +## Info for Oracle inet +## +oracleInet.dbName=cts1 +oracleInet.server=${orb.host} +oracleInet.port=1521 +oracleInet.dml.file=oracle/oracle.dml.sql +oracleInet.user=cts1 +oracleInet.passwd=cts1 +oracleInet.url=jdbc:inetora:${oracleInet.server}:${oracleInet.port}:${oracleInet.dbName} +oracleInet.driver=com.inet.ora.OraDriver +oracleInet.classes=${jdbc.lib.class.path}/Oranxo.jar +oracleInet.poolName=cts-oracle-Inet-pool +oracleInet.dataSource=com.inet.ora.OraDataSource +oracleInet.properties=user\=${oracleInet.user}:password\=${oracleInet.passwd}:serviceName\="${oracleInet.dbName}":serverName=${oracleInet.server}:port=${oracleInet.port} + +## +## Info for Oracle Sun +## +oracleSun.dbName=ora817 +oracleSun.server=${orb.host} +oracleSun.port=1521 +oracleSun.dml.file=oracle/oracle.dml.sql +oracleSun.user=la +oracleSun.passwd=la +oracleSun.url=jdbc:sun:oracle://${oracleSun.server};SID=${oracleSun.dbName} +oracleSun.driver=com.sun.sql.jdbc.oracle.OracleDriver +oracleSun.classes=${jdbc.lib.class.path}/smoracle.jar +oracleSun.poolName=cts-oracle-Sun-pool +oracleSun.dataSource=com.sun.sql.jdbcx.oracle.OracleDataSource +oracleSun.properties=user\=${oracleSun.user}:password\=${oracleSun.passwd}:SID\="${oracleSun.dbName}":serverName=${oracleSun.server}:portNumber=${oracleSun.port} + +## +## Info for Pointbase +## +pointbase.dbName=cts +pointbase.server=${orb.host} +pointbase.port=9092 +pointbase.dml.file=pointbase/pointbase.dml.sql +pointbase.user=PBPUBLIC +pointbase.passwd=PBPUBLIC +pointbase.url=jdbc:pointbase:server://${pointbase.server}:${pointbase.port}/${pointbase.dbName},new +pointbase.driver=com.pointbase.jdbc.jdbcUniversalDriver +pointbase.classes=${jdbc.lib.class.path}/pbclient.jar${pathsep}${jdbc.lib.class.path}/pbembedded.jar +pointbase.poolName=cts-pointbase-pool +pointbase.dataSource=com.pointbase.jdbc.jdbcDataSource +pointbase.pool.url="jdbc\\:pointbase\\:server\\:\/\/${pointbase.server}\\:${pointbase.port}\/${pointbase.dbName},new" +pointbase.properties=user\=${pointbase.user}:password\=${pointbase.passwd}:DatabaseName\=\"${pointbase.pool.url}\" + +## +## Info for Postgres +## +postgresql.dbName=CTS5 +postgresql.server=${orb.host} +postgresql.port=5432 +postgresql.dml.file=postgresql/postgresql.dml.sql +postgresql.user=cts1 +postgresql.passwd=cts1 +postgresql.url=jdbc:postgresql://${postgresql.server}:${postgresql.port}/${postgresql.dbName} +postgresql.driver=org.postgresql.Driver +postgresql.classes=${jdbc.lib.class.path}/postgresql-8.4-701.jdbc4.jar +postgresql.poolName=cts-postgresql-pool +postgresql.pool.url="jdbc\\:postgresql\\:server\\:\/\/${postgresql.server}\\:${postgresql.port}\/${postgresql.dbName},new" +postgresql.dataSource=org.postgresql.ds.PGSimpleDataSource +postgresql.properties=user\=${postgresql.user}:password\=${postgresql.passwd}:DatabaseName\=${postgresql.dbName}\:ServerName\=${postgresql.server}\:port\=${postgresql.port} + +## +## Info for Sybase (jConnect Driver) +## +sybase.dbName=cts2 +sybase.server=${orb.host} +sybase.port=4100 +sybase.dml.file=sybase/sybase.dml.sql +sybase.user=cts1 +sybase.passwd=cts1 +sybase.url=jdbc:sybase:Tds:${sybase.server}:${sybase.port}/${sybase.dbName} +sybase.driver=com.sybase.jdbc2.jdbc.SybDriver +sybase.classes=${jdbc.lib.class.path}/jconn2.jar +sybase.poolName=cts-sybase-pool +sybase.dataSource= com.sybase.jdbc2.jdbc.SybDataSource +sybase.properties=user\=${sybase.user}:password\=${sybase.passwd}:DatabaseName\=${sybase.dbName}\:ServerName\=${sybase.server}\:PortNumber\=${sybase.port}\:BE_AS_JDBC_COMPLIANT_AS_POSSIBLE\=true\:FAKE_METADATA\=true + +## +## Info for Sybase (Inet Driver) +## +sybaseInet.dbName=cts2 +sybaseInet.server=${orb.host} +sybaseInet.port=4100 +sybaseInet.dml.file=sybase/sybase.dml.sql +sybaseInet.user=cts1 +sybaseInet.passwd=cts1 +sybaseInet.url=jdbc:inetsyb:${sybaseInet.server}:${sybaseInet.port}?database=${sybaseInet.dbName} +sybaseInet.driver=com.inet.syb.SybDriver +sybaseInet.classes=${jdbc.lib.class.path}/Sybelux.jar +sybaseInet.poolName=cts-sybase-Inet-pool +sybaseInet.dataSource= com.inet.syb.SybDataSource +sybaseInet.properties=user\=${sybaseInet.user}:password\=${sybaseInet.passwd}:DatabaseName\=${sybaseInet.dbName}\:ServerName\=${sybaseInet.server}\:PortNumber\=${sybaseInet.port} + + +## +## Info for Sybase using the DataDirect driver +## +sybaseDD.dbName=cts2 +sybaseDD.server=${orb.host} +sybaseDD.port=4100 +sybaseDD.dml.file=sybase/sybase.dml.sql +sybaseDD.user=cts1 +sybaseDD.passwd=cts1 +sybaseDD.url=jdbc:datadirect:sybase://${sybaseDD.server}:${sybaseDD.port} +sybaseDD.driver=com.ddtek.jdbc.sybase.SybaseDriver +sybaseDD.classes=${jdbc.lib.class.path}/util.jar${pathsep}${jdbc.lib.class.path}/sybase.jar${pathsep}${jdbc.lib.class.path}/base.jar +sybaseDD.poolName=cts-sybase-DataDirect-pool +sybaseDD.dataSource=com.ddtek.jdbcx.sybase.SybaseDataSource +sybaseDD.properties=user\=${sybaseDD.user}:password\=${sybaseDD.passwd}:ServerName\=${sybaseDD.server}:portNumber\=${sybaseDD.port}:selectMethod\=cursor:DatabaseName\=${sybaseDD.dbName} + +## +## Info for Sybase using the Sun driver +## +sybaseSun.dbName=cts2 +sybaseSun.server=${orb.host} +sybaseSun.port=4100 +sybaseSun.dml.file=sybase/sybase.dml.sql +sybaseSun.user=cts1 +sybaseSun.passwd=cts1 +sybaseSun.url=jdbc:sun:sybase://${sybaseSun.server}:${sybaseSun.port} +sybaseSun.driver=com.sun.sql.jdbc.sybase.SybaseDriver +sybaseSun.classes=${jdbc.lib.class.path}/smsybase.jar +sybaseSun.poolName=cts-sybase-Sun-pool +sybaseSun.dataSource=com.sun.sql.jdbcx.sybase.SybaseDataSource +sybaseSun.properties=user\=${sybaseSun.user}:password\=${sybaseSun.passwd}:ServerName\=${sybaseSun.server}:portNumber\=${sybaseSun.port}:selectMethod\=cursor:DatabaseName\=${sybaseSun.dbName} + +############################################################### +## The following database configuration section is for the CTS +## interop tests which require a database that is used by the +## reference implementation. These entries should not be changed. +# @derby.dbName.ri -- Database Name +# @derby.server.ri -- Database Server +# @derby.port.ri -- Database Server port +# @derby.dml.file.ri -- DML file used for CTS test cases +# @derby.user.ri -- User Id configured +# @derby.passwd.ri -- User password configured +# @derby.url.ri -- URL to the cts database +# @derby.driver.ri -- DriverManager driver +# @derby.classes.ri -- CLASSPATH to JDBC driver classes +# @derby.poolName.ri -- Name of pool configured in the Java EE +# RI (do not change!) +# @derby.dataSource.ri -- DataSource driver +# @derby.properties.ri -- Any additional JDBC driver required +# properties +# @derby.startup.delay.ri -- delay to wait for DB to start +############################################################### +derby.dbName.ri=derbyDBri +derby.server.ri=${orb.host.ri} +derby.port.ri=1527 +derby.dml.file.ri=derby/derby.dml.sql +derby.user.ri=cts1 +derby.passwd.ri=cts1 +derby.url.ri=jdbc:derby://${derby.server.ri}:${derby.port.ri}/${derby.dbName.ri};create=true +derby.driver.ri=org.apache.derby.jdbc.ClientDriver +derby.home.ri=${javaee.home.ri}/../javadb +derby.system.home.ri=${derby.home.ri}/databases +derby.classpath.ri=${ts.home}/lib/dbprocedures.jar${pathsep}${derby.home.ri}/lib/derbynet.jar${pathsep}${derby.home.ri}/lib/derbyshared.jar${pathsep}${derby.home.ri}/lib/derbytools.jar +derby.classes.ri=${derby.home.ri}/lib/derbyclient.jar{pathsep}${derby.home.ri}/lib/derbyshared.jar${pathsep}${derby.home.ri}/lib/derbytools.jar +derby.poolName.ri=cts-derby-pool +derby.dataSource.ri=org.apache.derby.jdbc.ClientDataSource +derby.properties.ri=DatabaseName\=\"${derby.dbName.ri}\":user\=${derby.user.ri}:password\=${derby.passwd.ri}:serverName\=${derby.server.ri}:portNumber=${derby.port.ri} +derby.startup.delay.ri=5 +############################################################### +# @alt.dtd.dir DTD location for Java EE and RI xml files. Used +# for xml validation when building tests. If +# javaee.home.ri is set, /lib/dtds +# will be used and alt.dtd.dir is ignored. +# @alt.schema.dir schema location for Java EE and RI xml files. +# Used for xml validation when building tests. +# If javaee.home.ri is set, +# /lib/schemas will be used and +# alt.schema.dir is ignored. +############################################################### +alt.dtd.dir=${ts.home}/lib/dtds +alt.schema.dir=${ts.home}/lib/schemas + +############################################################### +## Configure the behavior of which tables CTS will create when +## ant init.[datbaseName] is invoked. +# +# @create.cmp.tables - When set to false, the appserver is +# responsible for creating cmp tables +# at deployment of the ejb/ear +# When set to true, init.[datbaseName] +# will create the tables used by CMP +# EJBs. The sql for the CMP tables are +# contained in: +# $TS_HOME/[datbaseName]/sql/[databaseName].ddl.cmp.sql +# $TS_HOME/[datbaseName]/sql/[databaseName].ddl.interop.sql +# +############################################################### +create.cmp.tables=true + +############################################################### +# @jdbc.poolName - Configure the connection pool that will be +# tested in this cts test run. +# +# @jdbc.maxpoolsize - This property defines the max pool size +# when creating JDBC connection pools. +# +# @jdbc.steadypoolsize - This property defines the steady pool size +# when creating JDBC connection pools. +############################################################### +jdbc.poolName=${derby.poolName} +jdbc.maxpoolsize=64 +jdbc.steadypoolsize=32 + +############################################################### +## These properties are use for the CTS +## interop tests which require a database that is used by the +## reference implementation. +# +# @jdbc.poolName.ri - Configure the connection pool that will be +# use when configuring the JDBC connection +# pools for the reference implemetation. +# +# @jdbc.maxpoolsize.ri - This property defines the max pool size +# when creating JDBC connection pools. +# +# @jdbc.steadypoolsize.ri - This property defines the steady pool size +# when creating JDBC connection pools. +############################################################### +jdbc.poolName.ri=${derby.poolName.ri} +jdbc.maxpoolsize.ri=96 +jdbc.steadypoolsize.ri=32 + +############################################################### +# @jdbc.datasource.props - Used to to specify Vendor specific +# properties and less commonly used DataSource properties. +# Its value is a comma-separated array of name-value pairs. +# Each property pair follows the format of "name=value", +# including the surrounding double quotes. +# +# The value of this property must not contain any extra spaces. +# +# In most cases, this property is not needed and therefore +# commented out. +# +############################################################### +#jdbc.datasource.props="driverType=thin","name2=value2" + +############################################################### +# @jdbc.db - The name of the currently configured DB. This +# value is the prefix of the DB properties currently +# being used. Some valid values are; derby and +# derbyEmbedded. See the other DB property +# names for other valid values. +############################################################### +jdbc.db=derby +jdbc.db.classes=${derby.classes} + +############################################################### +## These properties are configurable and must specify valid +## usernames and passwords to establish JDBC connections to +## backend RDBMS. +## +# @user1 - Set this to the user for the jdbc/DB1 resource +# @password1 - Set this to the password for the jdbc/DB1 resource +# @user2 - Set this to the user for the jdbc/DB2 resource +# @password2 - Set this to the password for the jdbc/DB2 resource +# @user3 - Set this to the user for the jdbc/DBTimer resource +# @password3 - Set this to the password for the jdbc/DBTimer resource +############################################################### +user1=${derby.user} +password1=${derby.passwd} +user2=${derby.user} +password2=${derby.passwd} +user3=${derby.user} +password3=${derby.passwd} + +############################################################### +## Configure the dml file to use +# @db.dml.file - dml file for VI +# @db.dml.file.ri - dml file for RI +############################################################### +db.dml.file=${derby.dml.file} +db.dml.file.ri=${derby.dml.file} + +############################################################### +## Configure the DB specific information needed by JSTL +# @jstl.db.driver - JDBC driver +# @jstl.db.url - DB URL +############################################################### +jstl.db.driver=${derby.driver} +jstl.db.url=${derby.url} + +######################################################################## +# +# @jtaJarClasspath: This property must be set when running signature +# tests. This property should be set to the Path +# for the JTA API jar. +# +######################################################################## +jtaJarClasspath=${s1as.modules}/jakarta.transaction-api.jar + +############################################################### +## Classpath properties required by CTS: +# @javaee.classes.ri -- Classes required by Java EE RI +# @ts.run.classpath.ri -- Classpath required by Java EE RI +# appclient container. +# @ts.run.classpath -- Classpath required by the vendor +# appclient container. +# @ts.harness.classpath -- Classes required by javatest +# @ts.classpath -- Classes used to build the CTS tests +# @ts.lib.classpath -- Classes used to build cts.jar +############################################################### +implementation.classes.ri=${ri.modules}/orb-connector.jar${pathsep}${ri.modules}/deployment-client.jar${pathsep}${ri.modules}/security-ee.jar${pathsep}${ri.modules}/security.jar${pathsep}${ri.modules}/common-util.jar${pathsep}${ri.modules}/glassfish-corba-omgapi.jar${pathsep}${ri.modules}/glassfish-corba-orb.jar${pathsep}${ri.modules}/internal-api.jar${pathsep}${ri.modules}/deployment-common.jar${pathsep}${ri.modules}/gmbal.jar${pathsep}${ri.modules}/bean-validator.jar${pathsep}${ri.modules}/jersey-client.jar${pathsep}${ri.modules}/jersey-common.jar${pathsep}${ri.modules}/jersey-hk2.jar${pathsep}${ri.modules}/jersey-media-jaxb.jar${pathsep}${ri.modules}/jersey-media-sse.jar${pathsep}${ri.modules}/jersey-media-json-processing.jar${pathsep}${ri.modules}/jsonp-jaxrs.jar${pathsep}${ri.modules}/jersey-media-json-binding.jar${pathsep}${ri.modules}/jersey-server.jar${pathsep}${ri.modules}/jersey-container-servlet.jar${pathsep}${ri.modules}/jersey-container-servlet-core.jar${pathsep}${ri.modules}/guava.jar${pathsep}${ri.modules}/jakarta.el.jar${pathsep}${ri.modules}/jakarta.el-api.jar${pathsep}${ri.modules}/tyrus-websocket-core.jar${pathsep}${ri.modules}/tyrus-client.jar${pathsep}${ri.modules}/tyrus-container-grizzly-client.jar${pathsep}${ri.modules}/tyrus-core.jar${pathsep}${ri.modules}/tyrus-container-grizzly.jar${pathsep}${ri.modules}/tyrus-container-grizzly-client.jar${pathsep}${ri.modules}/glassfish-grizzly-extra-all.jar${pathsep}${ri.modules}/nucleus-grizzly-all.jar${pathsep}${ri.modules}/tyrus-server.jar${pathsep}${ri.modules}/tyrus-container-servlet.jar${pathsep}${ri.modules}/tyrus-spi.jar${pathsep}${ri.modules}/yasson.jar${pathsep}${ri.modules}/jakarta.websocket-client-api.jar${pathsep}${ri.modules}/parsson.jar${pathsep}${ri.modules}/parsson-media.jar${pathsep}${ri.modules}/angus-activation.jar${pathsep}${ri.modules}/angus-mail.jar${pathsep}${ri.modules}/expressly.jar + +implementation.classes=${s1as.modules}/deployment-client.jar${pathsep}${s1as.modules}/security.jar${pathsep}${s1as.modules}/common-util.jar${pathsep}${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/deployment-common.jar${pathsep}${s1as.modules}/gmbal.jar${pathsep}${s1as.modules}/bean-validator.jar${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/jersey-client.jar${pathsep}${s1as.modules}/jersey-common.jar${pathsep}${s1as.modules}/jersey-hk2.jar${pathsep}${s1as.modules}/jersey-media-jaxb.jar${pathsep}${s1as.modules}/jersey-media-sse.jar${pathsep}${s1as.modules}/jersey-media-json-processing.jar${pathsep}${s1as.modules}/jsonp-jaxrs.jar${pathsep}${s1as.modules}/jersey-media-json-binding.jar${pathsep}${s1as.modules}/jersey-server.jar${pathsep}${s1as.modules}/jersey-container-servlet.jar${pathsep}${s1as.modules}/jersey-container-servlet-core.jar${pathsep}${s1as.modules}/guava.jar${pathsep}${s1as.modules}/jakarta.el.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/tyrus-websocket-core.jar${pathsep}${s1as.modules}/tyrus-client.jar${pathsep}${s1as.modules}/tyrus-core.jar${pathsep}${s1as.modules}/tyrus-container-grizzly.jar${pathsep}${s1as.modules}/tyrus-container-grizzly-client.jar${pathsep}${s1as.modules}/glassfish-grizzly-extra-all.jar${pathsep}${s1as.modules}/nucleus-grizzly-all.jar${pathsep}${s1as.modules}/tyrus-server.jar${pathsep}${s1as.modules}/tyrus-container-servlet.jar${pathsep}${s1as.modules}/tyrus-spi.jar${pathsep}${s1as.modules}/yasson.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/parsson.jar${pathsep}${s1as.modules}/parsson-media.jar${pathsep}${s1as.modules}/angus-activation.jar${pathsep}${s1as.modules}/angus-mail.jar${pathsep}${s1as.modules}/expressly.jar + +javaee.classes.ri=${ri.modules}/jakarta.jms-api.jar${pathsep}${ri.modules}/jakarta.json.jar${pathsep}${ri.modules}/jakarta.json-api.jar${pathsep}${ri.modules}/jakarta.json.bind-api.jar${pathsep}${ri.modules}/jakarta.ejb-api.jar${pathsep}${ri.modules}/jakarta.annotation-api.jar${pathsep}${ri.modules}/jakarta.enterprise.deploy-api.jar${pathsep}${ri.modules}/jakarta.mail.jar${pathsep}${ri.modules}/jakarta.mail-api.jar${pathsep}${ri.modules}/jakarta.persistence.jar${pathsep}${ri.modules}/jakarta.persistence-api.jar${pathsep}${ri.modules}/jakarta.resource-api.jar${pathsep}${ri.modules}/jakarta.security.auth.message-api.jar${pathsep}${ri.modules}/jakarta.authentication-api.jar${pathsep}${ri.modules}/jakarta.security.jacc-api.jar${pathsep}${ri.modules}/jakarta.authorization-api.jar${pathsep}${ri.modules}/jakarta.interceptor-api.jar${pathsep}${ri.modules}/jakarta.servlet-api.jar${pathsep}${ri.modules}/jakarta.servlet.jsp-api.jar${pathsep}${ri.modules}/jakarta.transaction-api.jar${pathsep}${ri.modules}/jakarta.xml.bind-api.jar${pathsep}${ri.modules}/jaxb-osgi.jar${pathsep}${ri.modules}/jmxremote_optional-repackaged.jar${pathsep}${ri.modules}/jakarta.faces.jar${pathsep}${ri.modules}/jakarta.faces-api.jar${pathsep}${ri.modules}/jakarta.servlet.jsp.jstl.jar${pathsep}${ri.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${ri.modules}/webservices-osgi.jar${pathsep}${ri.modules}/webservices-api-osgi.jar${pathsep}${ri.modules}/ejb.security.jar${pathsep}${ri.modules}/glassfish-corba-csiv2-idl.jar${pathsep}${ri.modules}/weld-osgi-bundle.jar${pathsep}${implementation.classes.ri}${pathsep}${ri.modules}/javamail-connector.jar${pathsep}${ri.modules}/javamail-runtime.jar${pathsep}${ri.modules}/jakarta.websocket-api.jar${pathsep}${ri.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${ri.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${ri.modules}/jakarta.security.enterprise-api.jar${pathsep}${ri.modules}/resolver.jar${pathsep}${ri.modules}/jakarta.websocket-client-api.jar${pathsep}${ri.modules}/parsson.jar${pathsep}${s1as.modules}/parsson-media.jar${pathsep}${ri.modules}/angus-activation.jar${pathsep}${s1as.modules}/angus-mail.jar${pathsep}${s1as.modules}/expressly.jar${pathsep}${ri.modules}/webservices-extra-jdk-packages.jar${pathsep}${ri.modules}/webservices-connector.jar${pathsep}${ri.modules}/webservices-extra-xmlsec.jar${pathsep}${ri.modules}/webservices.security.jar + +javaee.classes=${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.json.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.deploy-api.jar${pathsep}${s1as.modules}/jakarta.mail.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.security.auth.message-api.jar${pathsep}${s1as.modules}/jakarta.security.jacc-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/el-impl.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/jaxb-osgi.jar${pathsep}${s1as.modules}/jmxremote_optional-repackaged.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.faces-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl.jar${pathsep}${ri.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${s1as.modules}/webservices-osgi.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${s1as.modules}/jakarta.management.j2ee-api.jar${pathsep}${s1as.modules}/ejb.security.jar${pathsep}${s1as.modules}/glassfish-corba-csiv2-idl.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${implementation.classes}${pathsep}${s1as.modules}/javamail-connector.jar${pathsep}${s1as.modules}/javamail-runtime.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar$${pathsep}${s1as.modules}/jakarta.xml.ws-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/resolver.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/parsson.jar${pathsep}${s1as.modules}/parsson-media.jar${pathsep}${s1as.modules}/angus-activation.jar${pathsep}${s1as.modules}/angus-mail.jar${pathsep}${s1as.modules}/expressly.jar${pathsep}${s1as.modules}/webservices-extra-jdk-packages.jar${pathsep}${s1as.modules}/webservices-connector.jar${pathsep}${s1as.modules}/webservices-extra-xmlsec.jar${pathsep}${s1as.modules}/webservices.security.jar + +ts.run.classpath.ri=${javaee.classes.ri}${pathsep}${ts.home}/lib/tsharness.jar${pathsep}${ts.home}/lib/cts.jar${pathsep}${ts.home}/lib/glassfishporting.jar + +ts.run.classpath=${pathsep}${javaee.classes}${pathsep}${ts.home}/lib/tsharness.jar${pathsep}${ts.home}/lib/cts.jar${pathsep}${ts.home}/lib/glassfishporting.jar${pathsep}${jdbc.db.classes} + +ts.harness.classpath=${ts.home}/lib/jaxb-api.jar${pathsep}${ts.home}/lib/jaxb-core.jar${pathsep}${ts.home}/lib/jaxb-impl.jar${pathsep}${ts.home}/lib/jaxb-xjc.jar${pathsep}${ts.home}/lib/tsharness.jar${pathsep}${ts.home}/lib/cts.jar${pathsep}${ts.home}/lib/glassfishporting.jar${pathsep}${ts.home}/lib/sigtest.jar${pathsep}${ts.run.classpath}${pathsep}${ts.home}/lib/javatest.jar${pathsep}${ts.home}/lib/jdom-1.1.3.jar${pathsep}${ant.home}/lib/ant.jar${pathsep}${ri.modules}/admin-cli.jar + +#classpath used for building CTS tests only (DO NOT MODIFY) +ts.classpath=${ts.home}/lib/commons-lang3-3.3.2.jar${pathsep}${javaee.home.ri}/javadb/lib/derby.jar${pathsep}${ts.home}/lib/tsharness.jar${pathsep}${ts.home}/lib/cts.jar${pathsep}${ts.home}/lib/glassfishporting.jar${pathsep}${ts.home}/lib/sigtest.jar${pathsep}${ts.run.classpath}${pathsep}${ts.run.classpath.ri}${pathsep}${ts.home}/lib/javatest.jar${pathsep}${ts.home}/lib/jdom-1.1.3.jar${pathsep}${ant.home}/lib/ant.jar${pathsep}${ts.home}/lib/commons-httpclient-3.1.jar${pathsep}${ts.home}/lib/commons-logging-1.1.3.jar${pathsep}${ts.home}/lib/htmlunit-2.15.jar${pathsep}${ts.home}/lib/htmlunit-core-js-2.15.jar${pathsep}${ts.home}/lib/unboundid-ldapsdk.jar${pathsep}${ts.home}/lib/commons-codec-1.9.jar${pathsep}${ts.home}/lib/xml-apis-1.4.01.jar${pathsep}${ts.home}/lib/jaxb-api.jar +#classpath used for building cts.jar (DO NOT MODIFY) +ts.lib.classpath=${javaee.home.ri}/javadb/lib/derby.jar${pathsep}${ts.harness.classpath} + + +############################################################### +# @javaee.home.ri.classpathsuffix - The classpath suffix of +# the RI used in interop tests. Must contain the RI JDBC +# driver jars and the RMI interceptor classes. +############################################################### +javaee.home.ri.classpathsuffix=${javaee.home.ri}/lib/riinterceptors.jar${pathsep}${javaee.home.ri}/javadb/lib/derbyclient.jar + +############################################################### +# @s1as.classpathsuffix - The classpath suffix of +# the RI when being used as the app server under test. +############################################################### +s1as.classpathsuffix=${javaee.home}/lib/tsprovider.jar + +######################################################################## +## Common environment for both ts_unix and ts_win32 +# +# @command.testExecute - This command is used to execute any test +# clients which are not run inside an +# application client container. For example, +# any URL clients or standalone java clients +# would be executed with this command. Some +# test directories which make use of this command +# are servlet and jsp. +######################################################################## + +command.testExecute=com.sun.ts.lib.harness.ExecTSTestCmd \ + CLASSPATH=${ts.harness.classpath}${pathsep}${ts.home}/classes${pathsep}\ + ${JAVA_HOME}/../lib/tools.jar${pathsep}\ + ${ri.modules}/security-ee.jar${pathsep}\ + ${ts.home}/lib/commons-httpclient-3.1.jar${pathsep}\ + ${ts.home}/lib/commons-logging-1.1.3.jar${pathsep}\ + ${ts.home}/lib/commons-codec-1.9.jar${pathsep}\ + ${ts.home}/lib/cssparser-0.9.25.jar${pathsep}\ + ${ts.home}/lib/htmlunit-2.15.jar${pathsep}\ + ${ts.home}/lib/htmlunit-core-js-2.15.jar${pathsep}\ + ${ts.home}/lib/httpcore-4.4.9.jar${pathsep}\ + ${ts.home}/lib/httpclient-4.5.5.jar${pathsep}\ + ${ts.home}/lib/httpmime-4.5.5.jar${pathsep}\ + ${ts.home}/lib/commons-collections-3.2.1.jar${pathsep}\ + ${ts.home}/lib/commons-io-2.4.jar${pathsep}\ + ${ts.home}/lib/commons-lang3-3.3.2.jar${pathsep}\ + ${ts.home}/lib/jaxen-1.1.6.jar${pathsep}\ + ${ts.home}/lib/nekohtml-1.9.21.jar${pathsep}\ + ${ts.home}/lib/sac-1.3.jar${pathsep}\ + ${ts.home}/lib/saxpath.jar${pathsep}\ + ${ts.home}/lib/xercesImpl-2.11.0.jar${pathsep}\ + ${ts.home}/lib/xalan-2.7.2.jar${pathsep}\ + ${ts.home}/lib/serializer-2.7.2.jar${pathsep}\ + ${ts.home}/lib/xml-apis-1.4.01.jar${pathsep}\ + ${ts.home}/lib/unboundid-ldapsdk.jar${pathsep}\ + ${jdbc.db.classes} \ + DISPLAY=${ts.display} \ + HOME="${user.home}" \ + TMP=${TMP} \ + windir=${windir} \ + SYSTEMROOT=${SYSTEMROOT} \ + PATH="${javaee.home}/nativelib" \ + ${JAVA_HOME}/bin/java \ + ${JVMOPTS_RUNTESTCOMMAND} \ + -Xss2048k \ + -Dcts.tmp=$harness.temp.directory \ + -Djava.protocol.handler.pkgs=javax.net.ssl \ + -Djavax.net.ssl.keyStore=${bin.dir}/certificates/clientcert.jks \ + -Djavax.net.ssl.keyStorePassword=changeit \ + -Djavax.net.ssl.trustStore=${s1as.domain}/${sjsas.instance.config.dir}/cacerts.jks \ + -Dcom.sun.aas.installRoot=${javaee.home} \ + -Dlog.file.location=${log.file.location} \ + -Dservlet.is.jsr115.compatible=${servlet.is.jsr115.compatible} \ + -Dprovider.configuration.file=${provider.configuration.file} \ + -Djava.security.properties=${s1as.domain}/${sjsas.instance.config.dir}/ts.java.security \ + -Dlogical.hostname.servlet=${logical.hostname.servlet} \ + -Dcom.sun.aas.configRoot=${javaee.home}/config \ + -Ddeliverable.class=${deliverable.class} $testExecuteClass $testExecuteArgs + +######################################################################## +## Appclient Command line for the App Server under test +## Licensees modify this command +# +# @command.testExecuteAppClient - This command is used to execute +# the application client container for +# the vendor implementation (vi). +# Please note that $TS_HOME/classes +# should not be in the classpath for +# this command since all client classes +# are self contained in the application +# archive (or referenced via the manifest). +######################################################################## +command.testExecuteAppClient= \ + com.sun.ts.lib.harness.ExecTSTestCmd DISPLAY=${ts.display} HOME="${user.home}" \ + LD_LIBRARY_PATH=${javaee.home}/lib \ + TMP=${TMP} \ + windir=${windir} \ + SYSTEMROOT=${SYSTEMROOT} \ + PATH="${javaee.home}/nativelib" \ + APPCPATH=${ts.home}/lib/tsharness.jar${pathsep}${ts.home}/lib/cts.jar${pathsep}${ts.home}/lib/glassfishporting.jar${pathsep}${javaee.home}/lib/jpa_alternate_provider.jar${pathsep}${ts.home}/lib/tssv.jar${pathsep}${javaee.home}/modules/weld-osgi-bundle.jar${pathsep}${javaee.home}/modules/jakarta.enterprise.cdi-api.jar \ + TZ=${tz} \ + ${JAVA_HOME}/bin/java \ + ${JVMOPTS_RUNTESTCOMMAND} \ + -Djava.system.class.loader=org.glassfish.appclient.client.acc.agent.ACCAgentClassLoader \ + -Djava.security.policy=${javaee.home}/lib/appclient/client.policy \ + -Dcts.tmp=$harness.temp.directory \ + -Djava.security.auth.login.config=${javaee.home}/lib/appclient/appclientlogin.conf \ + -Djava.protocol.handler.pkgs=javax.net.ssl \ + -Dcom.sun.enterprise.home=${javaee.home} \ + -Djavax.net.ssl.keyStore=${bin.dir}/certificates/clientcert.jks \ + -Djavax.net.ssl.keyStorePassword=changeit \ + -Dcom.sun.aas.installRoot=${javaee.home} \ + -Dcom.sun.aas.imqLib=${javaee.home}/../mq/lib \ + -Djavax.net.ssl.trustStore=${s1as.domain}/${sjsas.instance.config.dir}/cacerts.jks \ + -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl \ + -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl \ + -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl \ + -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser \ + -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter \ + -Doracle.jdbc.J2EE13Compliant=true \ + -Doracle.jdbc.mapDateToTimestamp \ + -Dstartup.login=false \ + -Dauth.gui=false \ + -Dlog.file.location=${log.file.location} \ + -Dri.log.file.location=${ri.log.file.location} \ + -DwebServerHost.2=${webServerHost.2} \ + -DwebServerPort.2=${webServerPort.2} \ + -Dprovider.configuration.file=${provider.configuration.file} \ + -Djava.security.properties=${s1as.domain}/${sjsas.instance.config.dir}/ts.java.security \ + -Dcom.sun.aas.configRoot=${javaee.home}/config \ + -Ddeliverable.class=${deliverable.class} -javaagent:${javaee.home}/lib/gf-client.jar=arg=-configxml,arg=${ts.home}/tmp/appclient/s1as.sun-acc.xml,client=jar=$testExecuteArgs + +#-Ddeliverable.class=${deliverable.class} -javaagent:${javaee.home}/modules/gf-client.jar=arg=-configxml,arg=${s1as.domain}/config/sun-acc.xml,client=jar=$testExecuteArgs +#-Xbootclasspath/a:${pathsep}${ts.home}/lib/tsharness.jar${pathsep}${ts.home}/lib/cts.jar + +######################################################################## +# @command.testExecuteEjbEmbed - Command line for standalone embedded EJB tests. +# Its classpath must include all the APIs required +# by EJB Lite, vendor's implementation classes and +# configuration for embeddable EJB container, and +# JDBC driver classes (e.g., ${db2.classes}, +# ${oracle.classes}, etc). +# +# Current test archives are dynamically added to +# the classpath by the harness, and need not be +# included in the classpath here. +# +# Most test directories contain one test archive, +# all named ejbembed_vehicle_ejb.jar. If certain +# tooling and pre-processing of test archives are +# needed, the resulting test archives must remain +# the same name and location. +# +# ${ts.home}/classes must not be in the classpath +# since all the required test classes are packaged +# in the test archive (ejbembed_vehicle_ejb.jar). In +# addition, including ${ts.home}/classes in the +# classpath would incorrectly expose all EJBs in +# cts to EJB container bootstrapping process. +######################################################################## +command.testExecuteEjbEmbed=com.sun.ts.lib.harness.ExecTSTestCmd \ + CLASSPATH=${ts.home}/lib/tsharness.jar${pathsep}\ + ${ts.home}/lib/cts.jar${pathsep}\ + ${ts.home}/lib/glassfishporting.jar${pathsep}\ + ${ts.home}/lib/commons-lang3-3.3.2.jar${pathsep}\ + ${jdbc.db.classes}${pathsep}\ + ${javaee.home}/lib/embedded/glassfish-embedded-static-shell.jar \ + DISPLAY=${ts.display} \ + HOME="${user.home}" \ + TMP=${TMP} \ + windir=${windir} \ + SYSTEMROOT=${SYSTEMROOT} \ + ${JAVA_HOME}/bin/java \ + ${JVMOPTS_RUNTESTCOMMAND} \ + -Dcts.tmp=$harness.temp.directory \ + -Djava.util.logging.config.file=${TS_HOME}/bin/client-logging.properties \ + -Dtest.ejb.stateful.timeout.wait.seconds=${test.ejb.stateful.timeout.wait.seconds} \ + -Ddeliverable.class=${deliverable.class} $testExecuteClass $testExecuteArgs + + +######################################################################## +## Appclient Command line for the Java EE RI (Do not modify) +######################################################################## +command.testExecuteAppClient2= \ + com.sun.ts.lib.harness.ExecTSTestCmd DISPLAY=${ts.display} HOME="${user.home}" \ + LD_LIBRARY_PATH=${javaee.home.ri}/lib \ + TMP=${TMP} \ + windir=${windir} \ + SYSTEMROOT=${SYSTEMROOT} \ + PATH="${javaee.home.ri}/nativelib" \ + APPCPATH=${ts.home}/lib/tsharness.jar${pathsep}${ts.home}/lib/cts.jar${pathsep}${ts.home}/lib/glassfishporting.jar${pathsep}${ts.home}/lib/riinterceptors.jar \ + TZ=${tz} \ + ${RI_JAVA_HOME}/bin/java \ + ${JVMOPTS_RUNTESTCOMMAND} \ + -Djava.system.class.loader=org.glassfish.appclient.client.acc.agent.ACCAgentClassLoader \ + -Djava.security.policy=${javaee.home.ri}/lib/appclient/client.policy \ + -Dcts.tmp=$harness.temp.directory \ + -Djava.security.auth.login.config=${javaee.home.ri}/lib/appclient/appclientlogin.conf \ + -Djava.protocol.handler.pkgs=javax.net.ssl \ + -Dcom.sun.enterprise.home=${javaee.home.ri} \ + -Djavax.net.ssl.keyStore=${bin.dir}/certificates/clientcert.jks \ + -Djavax.net.ssl.keyStorePassword=changeit \ + -Dcom.sun.aas.installRoot=${javaee.home.ri} \ + -Dcom.sun.aas.imqLib=${javaee.home.ri}/../mq/lib \ + -Djavax.net.ssl.trustStore=${ri.domain}/config/cacerts.jks \ + -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl \ + -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl \ + -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl \ + -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser \ + -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter \ + -Doracle.jdbc.J2EE13Compliant=true \ + -Doracle.jdbc.mapDateToTimestamp \ + -Dstartup.login=false \ + -Dauth.gui=false \ + -Dlog.file.location=${log.file.location} \ + -Dri.log.file.location=${ri.log.file.location} \ + -DwebServerHost.2=${webServerHost.2} \ + -DwebServerPort.2=${webServerPort.2} \ + -Dprovider.configuration.file=${provider.configuration.file} \ + -Djava.security.properties=${s1as.domain}/${sjsas.instance.config.dir}/ts.java.security \ + -Dcom.sun.aas.configRoot=${javaee.home.ri}/config \ + -Ddeliverable.class=${deliverable.class} -javaagent:${javaee.home.ri}/lib/gf-client.jar=arg=-configxml,arg=${ts.home}/tmp/appclient/ri.sun-acc.xml,client=jar=$testExecuteArgs + +######################################################################## +## Command line for standalone clients running against the +## Java EE RI (Do not modify) +######################################################################## +command.testExecute2=com.sun.ts.lib.harness.ExecTSTestCmd \ + CLASSPATH=${ts.harness.classpath}${pathsep}${ts.home}/classes${pathsep}\ + ${ts.home}/lib/commons-httpclient-3.1.jar${pathsep}\ + ${ts.home}/lib/commons-logging-1.1.3.jar${pathsep}\ + ${ts.home}/lib/commons-codec-1.9.jar${pathsep}\ + ${ts.home}/lib/cssparser-0.9.25.jar${pathsep}\ + ${ts.home}/lib/htmlunit-2.15.jar${pathsep}\ + ${ts.home}/lib/htmlunit-core-js-2.15.jar${pathsep}\ + ${ts.home}/lib/httpcore-4.4.9.jar${pathsep}\ + ${ts.home}/lib/httpclient-4.5.5.jar${pathsep}\ + ${ts.home}/lib/httpmime-4.5.5.jar${pathsep}\ + ${ts.home}/lib/commons-collections-3.2.1.jar${pathsep}\ + ${ts.home}/lib/commons-io-2.4.jar${pathsep}\ + ${ts.home}/lib/commons-lang3-3.3.2.jar${pathsep}\ + ${ts.home}/lib/jaxen-1.1.6.jar${pathsep}\ + ${ts.home}/lib/nekohtml-1.9.21.jar${pathsep}\ + ${ts.home}/lib/sac-1.3.jar${pathsep}\ + ${ts.home}/lib/saxpath.jar${pathsep}\ + ${ts.home}/lib/xercesImpl-2.11.0.jar${pathsep}\ + ${ts.home}/lib/xalan-2.7.2.jar${pathsep}\ + ${ts.home}/lib/serializer-2.7.2.jar${pathsep}\ + ${ts.home}/lib/xml-apis-1.4.01.jar \ + ${ts.home}/lib/unboundid-ldapsdk.jar\ + DISPLAY=${ts.display} \ + HOME="${user.home}" \ + TMP=${TMP} \ + windir=${windir} \ + SYSTEMROOT=${SYSTEMROOT} \ + PATH="${javaee.home}/nativelib" \ + ${RI_JAVA_HOME}/bin/java \ + ${JVMOPTS_RUNTESTCOMMAND} \ + -Dcts.tmp=$harness.temp.directory \ + -Djava.protocol.handler.pkgs=javax.net.ssl \ + -Djavax.net.ssl.keyStore=${bin.dir}/certificates/clientcert.jks \ + -Djavax.net.ssl.keyStorePassword=changeit \ + -Djavax.net.ssl.trustStore=${ri.domain}/${ri.instance.config.dir}/cacerts.jks \ + -Ddeliverable.class=${deliverable.class} $testExecuteClass $testExecuteArgs + +######################################################################### +## Environment for ts_unix +## 3 test execution commands inherit from common environment +## defined above: testExecuteAppClient2, testExecuteAppClient, and +## testExecute. If you need to override them, uncomment them in the +## following section. +######################################################################### +env.ts_unix.menu=true +##env.ts_unix.command.testExecute= +##env.ts_unix.command.testExecuteAppClient= +##env.ts_unix.command.testExecuteAppClient2= + + +######################################################################## +## Environment for ts_win32 +## 3 test execution commands inherit from common environment +## defined above: testExecuteAppClient2, testExecuteAppClient, and +## testExecute. If you need to override them, uncomment them in the +## following section. +######################################################################## +env.ts_win32.menu=true +##env.ts_win32.command.testExecute= +##env.ts_win32.command.testExecuteAppClient= +##env.ts_win32.command.testExecuteAppClient2= + +######################################################################### +# @jimage.dir: This property specifies the directory where Java 11+ +# modules will be expanded by the jimage tool for use +# in sigTestClasspath +# @sigTestClasspath: This property must be set when running signature +# tests. This property should be set to a list of +# jar files and/or directories which contain your +# Java EE and Java SE classes. Paths must be +# separated by the appropriate path separator +# (';' windows, ':' Unixes). +######################################################################### + +jimage.dir=${ts.home}/tmp/jdk-bundles + +sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming + +######################################################################## +## This property is used to support the odd side case when we have an +## optional technology package that is used but should not be tested. +## +## This property (i.e. optional.tech.packages.to.ignore) must be a comma +## separated list of packages that are NOT to be validated/tested when +## during the sigtest utilities validation of Optional Technologies. +## Example Usage: +## optional.tech.packages.to.ignore=javax.foo.pkg1,javax.bar.pkg2,com.blah.foo.pkg3 +## +## Additional notes: +## - always ignore the optional JAXB packages: +## optional.tech.packages.to.ignore=jakarta.xml.bind +## +######################################################################### +optional.tech.packages.to.ignore=jakarta.xml.bind + +######################################################################## +## These properties are used by the harness. "harness.log.port" +## specifies the port that server components use to send logging +## output back to JavaTest. If the default port # is not available +## on the machine running JavaTest, then you can set it here. +## +# +# @harness.temp.directory directory location used by the +# harness to store temporary files +# +# @harness.log.port the port the harness listens on for log mesages +# from remote clients +# +# @harness.log.traceflag used to turn on/off verbose debugging output +# for the tests. +# +# @harness.executeMode used to run the harness in the following modes +# of execution: +# 0 - default (deploy, run, undeploy) +# 1 - deploy only +# 2 - run only +# 3 - undeploy only +# 4 - deploy and run only +# +# @harness.socket.retry.count - denotes the number of time we should +# attempt to create a server socket when intilizing a test +# client. The socket is used for logging purposes. +# +# @harness.log.delayseconds Number of seconds to delay to allow +# reporting from remote clients to finish. +# +# @harness.maxoutputsize Number of characters that the harness will use +# for a test's output. +######################################################################## +harness.temp.directory=${ts.home}/tmp +harness.log.port=2000 +harness.log.traceflag=true +harness.executeMode=0 +harness.socket.retry.count=10 +harness.log.delayseconds=1 +harness.maxoutputsize=200000 + + +######################################################################### +# @wsdlRepository1 Location to publish final wsdl files when using +# file URL publishing for Vendor Java EE implementation. +# @wsdlRepository2 Location to publish final wsdl files when using +# file URL publishing for Sun RI. +######################################################################### +wsdlRepository1=${harness.temp.directory}/wsdlRepository1 +wsdlRepository2=${harness.temp.directory}/wsdlRepository2 + +####################################################################### +# @deployment_host.1 name of machine running the JSR 88 deployment +# process for the vendor's Java EE implementation. +# @deployment_host.2 name of machine running the JSR 88 deployment +# process for the Java EE RI. +# @deployment_port.1 deployment port (if applicable) for the vendor's +# Java EE implementation. +# @deployment_port.2 deployment port (if applicable) for the +# Java EE RI. +####################################################################### +deployment_host.1=${orb.host} +deployment_host.2=${orb.host.ri} +deployment_port.1=${impl.vi.port} +deployment_port.2=${impl.ri.port} + +#################################################################### +# Implementation Property Settings for Vendor and RI. These properties +# are used when either porting.ts.deploy.class.1 or porting.ts.deploy.class.2 +# are set to com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment. +# Note: They are are also used when using the "ant deploy" and "ant undeploy" +# targets outside of running tests. +# +# The CTS provides the glassfish implementation out of the box. +# +# Here are the common properties that need to be defined for the common +# implementation functionality: +# +# @impl.vi This property must be set to the Vendor implementation +# under test. +# @impl.vi.deploy.dir This property must be set to the deploy directory for +# the Vendor implementation. +# @impl.vi.host This property must be set to the admin host where +# the Vendor implementation is running. +# @impl.vi.port This property must be set to the admin port where +# the Vendor implementation is running. +# @impl.ri This property must be set to the RI implementation +# under test. +# @impl.ri.deploy.dir This property must be set to the deploy directory for +# the RI implementation. +# @impl.ri.host This property must be set to the admin host where +# the RI implementation is running. +# @impl.ri.port This property must be set to the admin port where +# the RI implementation is running. +# +# @impl.deploy.timeout.multiplier The time it will wait for deployment to +# succeed or fail +#################################################################### +impl.vi=glassfish +impl.vi.deploy.dir=${s1as.domain}/autodeploy +impl.vi.host=${s1as.admin.host} +impl.vi.port=${s1as.admin.port} + +impl.ri=glassfish +impl.ri.deploy.dir=${ri.domain}/autodeploy +impl.ri.host=${ri.admin.host} +impl.ri.port=${ri.admin.port} + +impl.deploy.timeout.multiplier=240 + + +############################################################### +## These properties are implementations of the pre-1.4 Deployment +## porting interface. The impls defined below use those APIs. +# +# @porting.ts.deploy.class.1 This property must point to an implementation +# of com.sun.ts.lib.porting.TSDeploymentInterface. The default +# value for this property points to an impl that deploys via copying/deleting +# to/from the RI autodeploy directory. More details about setting +# porting.ts.deploy.class.1: +# +# 1. Set this property to deploy/undeploy to/from your impl in +# a custom way. In the case of the RI, it would be set to the following. +# This is the default setting for CTS 8. +# +# porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment +# +# 2. Note that Jakarta Deployment is removed, so do not use either of the following classes: +# com.sun.ts.lib.deliverable.cts.deploy.StandardDeployment14 +# com.sun.ts.lib.porting.TSDeploymentInterface2 +# com.sun.ts.lib.implementation.sun.javaee.SunRIDeployment2 +# +# +# @porting.ts.deploy.class.2 This property must point to an implementation +# of com.sun.ts.lib.porting.TSDeploymentInterface. +# The default value for this property points to an impl that deploys via copying/deleting +# to/from the RI autodeploy directory. This should be left unchanged... +# +# porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment +# +# +############################################################### +porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment +porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM + +######################################################################## +# @deploy.delay.in.minutes is no longer used, it was for pruned Jakarta Deployment +######################################################################## + +######################################################################## +## Following are no longer used, were settings for pruned Jakarta Deployment +######################################################################## +#deployManagerJarFile.1 +#deployManageruri.1 +#deployManageruname.1 +#deployManagerpasswd.1 + +######################################################################## +## Following are no longer used, were settings for pruned Jakarta Deployment +######################################################################## +#deployManagerJarFile.2 +#deployManageruri.2 +#deployManageruname.2 +#deployManagerpasswd.2 +# +# @porting.ts.deploy2.class.1 +# @porting.ts.deploy2.class.2 +# porting.ts.deploy2.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIDeployment2 +# porting.ts.deploy2.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIDeployment2 + + +############################################################### +## These properties must be set to tell the Test harness the +## class names of your porting class implementations. By default +## both property sets below point to Sun RI specific classes. To +## run interoperability tests, the ".2" set of properties should +## always point to Sun RI classes. The ".1" set should point to +## implementations that work in your specific Java EE environment. +# +# @porting.ts.login.class.1 VI of +# com.sun.ts.lib.porting.TSLoginContextInterface +# @porting.ts.url.class.1 VI of +# com.sun.ts.lib.porting.TSURLInterface +# @porting.ts.jms.class.1 VI of +# com.sun.ts.lib.porting.TSJMSAdminInterface +# @porting.ts.HttpsURLConnection.class.1 VI of +# com.sun.ts.lib.porting.TSHttpsURLConnectionInterface +# @porting.ts.login.class.2 RI of +# com.sun.ts.lib.porting.TSLoginContextInterface +# @porting.ts.url.class.2 RI of +# com.sun.ts.lib.porting.TSURLInterface +# @porting.ts.jms.class.2 RI of +# com.sun.ts.lib.porting.TSJMSAdminInterface +# @porting.ts.HttpsURLConnection.class.2 RI of +# com.sun.ts.lib.porting.TSHttpsURLConnectionInterface +############################################################### +porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext +porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL +porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin +porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection + +##Porting class names for Sun RI Java EE Implementation #2 (must be Sun's RI) +porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext +porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL +porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin +porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection + +############################################################## +# @namingServiceHost1 Naming Service host name for the +# Vendor's Implementation (VI) +# @namingServicePort1 Naming Service port for the VI +# @namingServiceHost2 Naming Service host name for the +# Reference Implementation (RI) +# @ namingServicePort2 Naming Service port for the RI +############################################################## +namingServiceHost1=${orb.host} +namingServicePort1=${orb.port} +namingServiceHost2=${orb.host.ri} +namingServicePort2=${orb.port.ri} + +############################################################## +# @certLoginUserAlias User alias for certificate based login. +# This property is used in mutual authentication to pickup the +# certificate based on the user alias. +############################################################## +certLoginUserAlias=cts + +##################################################################### +## The following properties must be set prior to running the Servlet +## or JSP API tests and interoperability tests. +## +## These properties must specify the host and port of the web server, +## in which the servlets and JSPs are deployed. +# +# @webServerHost hostname for the Vendor's Java EE Web Server +# @webServerPort port number of the Vendor's Java EE Web Server +# @webServerHost.2 hostname for the Java EE RI Web Server +# @webServerPort.2 port number of the Java EE RI Web Server +# @ServletClientThreads The ServletClientThreads property configures +# the number of threads used by the client for +# the SingleThreadModel servlet test. If the +# container implementation supports pooling of +# SingleThreadModel servlets, set the value of +# ServletClientThreads to twice the value of +# the default servlet instance pool size. If +# the container implementation only maintains +# a single instance of a SingleTheadModel +# servlet, leave the default value of 2. +##################################################################### +webServerHost=${orb.host} +webServerPort=8080 +webServerHost.2=${orb.host.ri} +webServerPort.2=8181 +ServletClientThreads=2 + +#################################################################### +# @EJBServer1TxInteropEnabled Transaction interoperability settings +# for Vendor Java EE EJB Server +# @EJBServer2TxInteropEnabled Transaction interoperability settings +# for Java EE RI EJB Server +#################################################################### +EJBServer1TxInteropEnabled=true +EJBServer2TxInteropEnabled=true + +############################################################### +## These properties are used for the Connector specific tests. +## +## You must be able to deploy the following resource adapters +## on your Java EE server. +############################################################### + +## JNDI name bindings. You should not change these. The TSDeploymentInterface +## will pass these values as a properties object. See the SunRIDeployment.java +## file for usage patterns. +whitebox-tx=java:comp/env/eis/whitebox-tx +whitebox-notx=java:comp/env/eis/whitebox-notx +whitebox-xa=java:comp/env/eis/whitebox-xa +whitebox-tx-param=java:comp/env/eis/whitebox-tx-param +whitebox-notx-param=java:comp/env/eis/whitebox-notx-param +whitebox-xa-param=java:comp/env/eis/whitebox-xa-param +whitebox-anno_no_md=java:comp/env/eis/whitebox-anno_no_md +whitebox-ibanno_no_md=java:comp/env/eis/whitebox-ibanno_no_md +whitebox-mixedmode=java:comp/env/eis/whitebox-mixedmode +whitebox-multianno=java:comp/env/eis/whitebox-multianno +whitebox-mdcomplete=java:comp/env/eis/whitebox-mdcomplete +whitebox-permissiondd=java:comp/env/eis/whitebox-permissiondd + +## Embedded resource adapter property +whitebox-embed=java:comp/env/eis/ejb_Deployment_whitebox-tx.rar + +whitebox-embed-xa="__SYSTEM/resource/ejb_Tsr#whitebox-xa#com.sun.ts.tests.common.connector.whitebox.TSConnectionFactory" +tsrJndiName=java:comp/TransactionSynchronizationRegistry +tsrHomeJndiName="java:global/ejb_Tsr/ejb_Tsr_ejb/Tsr" + +## JNDI name bindings for JDBC Connector. +JDBCwhitebox-tx=java:comp/env/eis/JDBCwhitebox-tx +JDBCwhitebox-notx=java:comp/env/eis/JDBCwhitebox-notx +JDBCwhitebox-xa=java:comp/env/eis/JDBCwhitebox-xa +JDBCwhitebox-tx-param=java:comp/env/eis/JDBCwhitebox-tx-param +JDBCwhitebox-notx-param=java:comp/env/eis/JDBCwhitebox-notx-param +JDBCwhitebox-xa-param=java:comp/env/eis/JDBCwhitebox-xa-param + +######################################################################### +## Resource adapter configuration values. You must modify these values +## to plug your JDBC driver into the TS JDBCwhitebox resource adapter. +## +## When you run the XA tests (src/com/sun/ts/tests/xa), you must +## configure this resource adapter to use a database. +## +# @xa.properties: These are the properties required by the XA driver. The +# managed connection factory will set these properties via +# reflection on the class specified by the +# xa.xadatasource.class property. +# +# Note: The xa.properties value is the set of properties that will be set on +# your XA JDBC driver (the class denoted by the xa.xadatasource.class property). +# See section 9.4.1 of the JDBC 3.0 specification for more details. +# +# When specifying the xa.properties property please escape the appropriate +# characters. The xa.properties value needs to be treated as a single property +# even though it is made up of many properties. The properties need to be +# separated by :'s and the names and values to be separated by ='s. +# We also need any values that contain colons or equals that do not +# need to be interrpretted to be inside single quotes. Anything in +# single quotes will be treated as a string literal. +# +# For example: The following xa.properties property: +# +# xa.properties=user=admin:password=some-password:DatabaseName='jdbc:pointbase:server://localhost:9092/cts,new' +# +# Would result in the following setters being called on the supplied XA JDBC driver denoted +# by the xa.xadatasource.class property. +# +# XADataSource.setUser("admin"); +# XADataSource.setPassword("some-password"); +# XADataSource.setDatabaseName("jdbc:pointbase:server://localhost:9092/cts,new"); +# +# Please map the property xa.properties to the property name XAProps and map the +# xa.xadatasource.class property to the property name XADataSourceName. This will +# ensure the appropriate setters will be called to make these properties +# available to the managed connection factory. See section 17.4.2 of the Connector +# specification version 1.5. +# +# @xa.xadatasource.class: The implementation of the XADataSource interface. +# This class is your XA JDBC driver. +# Please note: this class and any dependent classes +# must be accessible by the CTS libraries in the app +# server's extension directory. +# +# @connector_connectionURL: The URL for your JDBC driver. Should be the +# same as the one used for the rest of the TS. +# +######################################################################### + +### Cloudscape/Derby properties for XA +xa.properties="user\\\=${derbyEmbedded.user}\\\:password\\\=${derbyEmbedded.passwd}\\\:DatabaseName\\\=${derbyEmbedded.dbName}" +xa.xadatasource.class=org.apache.derby.jdbc.EmbeddedXADataSource +connector_connectionURL="jdbc\\:derby\\:${derbyEmbedded.dbName}\\;create\\=true" + +######################################################################### +## The following properties must be set before running any security +## related tests. The properties user, password, authuser, authpassword, +## and nobodyuser must be set. +## +## The value for user, password, authuser, and authpassword need to be set +## exactly as they are set in the container/server. +# +# @user User defined to exercise rolemapping feature +# @password Associated password for the user +# @authuser User defined to exercise rolemapping feature +# @authpassword Associated password for the authuser +# @user_vi Username for the vendor implementation used in +# interop tests +# @password_vi Associated password for the VI user +# @user_ri Username for the reference implementation used in +# interop tests +# @password_ri Associated password for the RI user +# @nobodyuser This value must be the same value returned by a call to +# getCallerPrincipal().getName() from the ejb-tier when +# an unauthenticated caller in the web tier invokes an +# ejb method. +######################################################################### +user=j2ee +password=j2ee +authuser=javajoe +authpassword=javajoe +user_vi=j2ee_vi +password_vi=j2ee_vi +user_ri=j2ee_ri +password_ri=j2ee_ri +nobodyuser=guest + +############################################################### +# @securedWebServicePort must be set to run secbasicssl and +# csiv2 tests. Set this property with your application +# server's secured webservice port. +# @securedWebServicePort.2 points to the secured webservice +# port in Sun's Reference Implementation(RI). +############################################################### +securedWebServicePort=1044 +securedWebServicePort.2=1045 + +############################################################################### +# @client.cert.test.jdk.tls.client.protocols JDK 11 in TLSv1.3 does not support +# Post-Handshake Authentication, so TLSv1.2 must be used +# for client-cert authentication to work. +############################################################################### +client.cert.test.jdk.tls.client.protocols=TLSv1.2 + +############################################################### +# @login This property must be set to run appclient security +# tests +############################################################### +login=default + +################################################################################ +##These properties are needed for jms tests. +# +# @jms_timeout - this is the amount of time in milliseconds that synchronous +# receives will wait for a message +############################################################################### +jms_timeout=10000 + +######################################################################### + +############################################################################### +## These properties are needed for the EJB timer tests. +# +# @ejb_timeout - this is the amount of time in milliseconds that duration will +# be set for an ejbtimeout callback method +# +# @ejb_wait - this is the amount of time in milliseconds that the client will +# wait for ejbtimeout callback method results +############################################################################## +ejb_timeout=30000 +ejb_wait=60000 + +############################################################################### +## This property is needed for ejb30 stateful timeout tests. +# @test.ejb.stateful.timeout.wait.seconds - the minimum amount of time in seconds +# the test client waits before verifying the status of the target stateful +# bean. Its value must be an integer number. Its default value in ts.jte +# file is 480 seconds. It may be set to a smaller number (e.g., 240 seconds) +# to speed up testing, depending on the stateful timeout implementation +# strategy in the target server. +# +# For these stateful timeout tests, the property javatest.timeout.factor +# must be set to a value such that the JavaTest harness does not timeout +# before the test completes. Usually setting javatest.timeout.factor to +# 2.0 or greater should suffice. +############################################################################### +test.ejb.stateful.timeout.wait.seconds=480 + +################################################################### +# @log.file.location This property is used by JACC tests to create +# and analyze provider logs. Specify the log directory in which +# your appserver generates logs. +################################################################### +log.file.location=${vi.log.file.location} + + +################################################################### +################################################################### +################################################################### +## PROPERTIES USERS WILL NOT HAVE TO SET LIVE BELOW +################################################################### +################################################################### +################################################################### + +## +## The directory seperator for the platform. User should not change +## this property. +## +dirsep=/ + +##build level +##1: compile only +##2: compile and build component archives (e.g., jar's, war's) +##3: compile and build component and application archives +##default is set to 3 +build.level=3 + +deliverable.class=com.sun.ts.lib.deliverable.cts.CTSDeliverable + +################################################################### +## Deliverables wanting ts.* packaging tasks to add extension list +## attributes to the manifest files must set this property to true. +################################################################### +create.manifest.extension.entries=true + +###################################################################### +## Deliverables must set this property to the name of the deliverable +## specific library jar file (iff create.manifest.extension.entries +## is set to true) +###################################################################### +tslib.name=cts + +############################################################### +## These properties are used by connector tests and are non configurable +## and must specify valid username,password to establish TSeis connection. +############################################################### +rauser1=cts1 +rapassword1=cts1 +rauser2=cts2 +rapassword2=cts2 + +############################################################### +## These properties are for JSTL +############################################################### +jstl.db.user=${user1} +jstl.db.password=${password1} + +############################################################### +## This command is only used when quickly checking any servlet +## or jsp related tests. The test clients will be run in +## the same JVM as JavaTest in this case. This mode can be +## enabled by passing "-Dsame.jvm=true" to the runclient or gui +## targets. NOTE: This option is only to be used for sanity +## checking and not when running CTS for compatibility. +############################################################### +command.testExecuteSameJVM=com.sun.ts.lib.harness.ExecuteTSTestSameJVMCmd \ + $testExecuteClass $testExecuteArgs + +############################################################### +## These properties are used for the JDBC specific tests, +## they do not need to be changed. +############################################################### +DriverManager=no +Driver=DriverOnlyUsedIfDriverManagerIsYes +db1=db1OnlyUsedIfDriverManagerIsYes +db2=db1OnlyUsedIfDriverManagerIsYes +ptable=ctstable1 +ftable=ctstable2 +cofSize=5 +cofTypeSize=5 +binarySize=24 +varbinarySize=48 +longvarbinarySize=50 + +ts_home=${ts.home} + +####################################################################### +## platform.mode is used by jpa tests to know whether to use +## the Java EE Programming Model for service and port access. +## platform.mode=jakartaEE Java EE Programming Model +###################################################################### +platform.mode=jakartaEE + +########################################################################### +# tools.jar should be set to the location of the tools.jar from the installed +# jdk +########################################################################### +tools.jar=/home/jenkins/agent/workspace/jakartaee-tck_master/modules/webservices-tools.jar:/home/jenkins/agent/workspace/jakartaee-tck_master/modules/webservices-api.jar + +########################################################################### +# various flags used by the generation tools +########################################################################### +wsgen.ant.classname= +wsgen.classpath=${javaee.classes}${pathsep}${tools.jar} +wsgen.verbose=true +wsgen.debug=false +wsimport.ant.classname= +wsimport.classpath=${javaee.classes}${pathsep}${tools.jar} +wsimport.verbose=true +wsimport.debug=false +wsimport.jvmargs= + +########################################################################### +# various flags used by Suns generation tools +# DO NOT EDIT +########################################################################### +ri.wsgen.ant.classname=com.sun.tools.ws.ant.WsGen +ri.wsgen.classpath=${javaee.classes.ri}${pathsep}${tools.jar} +ri.wsgen.verbose=true +ri.wsgen.debug=false +ri.wsimport.ant.classname=com.sun.tools.ws.ant.WsImport +ri.wsimport.classpath=${javaee.classes.ri}${pathsep}${tools.jar} +ri.wsimport.verbose=true +ri.wsimport.debug=false +ri.wsimport.jvmargs= + +################################# +## Packaging properties for DAOs +################################# +ts.dao.root=com/sun/ts/tests/common/dao + +ts.dao.classes.base=\ + ${ts.dao.root}/InvalidDAOSettingException.class, \ + ${ts.dao.root}/DAOException.class, \ + ${ts.dao.root}/DAO.class, \ + ${ts.dao.root}/DataSourceDAO*.class, \ + ${ts.dao.root}/DAOFactory.class, \ + ${ts.dao.root}/TSDAOFactory*.class, \ + ${ts.dao.root}/coffee/CoffeeBean.class, \ + ${ts.dao.root}/coffee/CoffeeDAO.class, \ + ${ts.dao.root}/coffee/TxCoffeeDAO.class, \ + ${ts.dao.root}/coffee/variants/StringPKCoffeeDAO.class, \ + ${ts.dao.root}/coffee/variants/LongPKCoffeeDAO.class, \ + ${ts.dao.root}/coffee/variants/FloatPKCoffeeDAO.class, \ + ${ts.dao.root}/coffee/variants/CompoundPK.class, \ + ${ts.dao.root}/coffee/variants/CompoundPKCoffeeDAO.class + +ts.dao.classes.impl=\ + ${ts.dao.root}/coffee/DataSourceCoffeeDAO.class, \ + ${ts.dao.root}/coffee/variants/StringPKDSCoffeeDAO.class, \ + ${ts.dao.root}/coffee/variants/LongPKDSCoffeeDAO.class, \ + ${ts.dao.root}/coffee/variants/FloatPKDSCoffeeDAO.class, \ + ${ts.dao.root}/coffee/variants/CompoundPKDSCoffeeDAO.class + +ts.dao.classes.coffee.standard=\ + ${ts.dao.classes.base}, \ + ${ts.dao.classes.impl} + +ts.dao.classes.coffee.txaware=\ + ${ts.dao.classes.base}, \ + ${ts.dao.classes.impl} + +ts.dao.classes.coffee.variants=\ + ${ts.dao.classes.base}, \ + ${ts.dao.classes.impl} + +##################################### +## Packaging properties for Wrappers +##################################### + +ts.wrappers.ejb.root=com/sun/ts/tests/common/ejb/wrappers + +ts.wrappers.web.root=com/sun/ts/tests/common/web + +## Classes to package in ejb-jar for EJB Stateless wrapper +ts.wrappers.classes.stateless.ejb=\ + ${ts.wrappers.ejb.root}/StatelessWrapper.class + +## Classes to package in ejb-jar for EJB Stateful wrapper +ts.wrappers.classes.stateful.ejb=\ + ${ts.wrappers.ejb.root}/StatefulWrapper.class + +## Classes to package in ejb-jar for EJB BMP wrapper +ts.wrappers.classes.bmp.ejb=\ + ${ts.dao.classes.coffee.standard}, \ + ${ts.wrappers.ejb.root}/BMPWrapper.class + +## Classes to package in ejb-jar for EJB CMP 1.1 wrapper +ts.wrappers.classes.cmp11.ejb=${ts.wrappers.ejb.root}/CMP11Wrapper.class + +## Classes to package in ejb-jar for EJB CMP 2.0 wrapper +ts.wrappers.classes.cmp20.ejb=${ts.wrappers.ejb.root}/CMP20Wrapper.class + +## Classes to package in ejb-jar for EJB MDB wrapper +ts.wrappers.classes.mdb.ejb=\ + com/sun/ts/tests/jms/common/JmsUtil.class, \ + com/sun/ts/tests/jms/commonee/ParentMsgBean.class, \ + ${ts.wrappers.ejb.root}/MDBWrapper.class + +## Classes to package in client module for EJB MDB wrapper +ts.wrappers.classes.mdb.client=com/sun/ts/tests/jms/commonee/Client.class + +## Classes to package in ejb-jar for all EJB wrappers +ts.wrappers.classes.all.ejb=\ + ${ts.wrappers.classes.stateless.ejb}, \ + ${ts.wrappers.classes.stateful.ejb}, \ + ${ts.wrappers.classes.bmp.ejb}, \ + ${ts.wrappers.classes.cmp11.ejb}, \ + ${ts.wrappers.classes.cmp20.ejb}, \ + ${ts.wrappers.classes.mdb.ejb} + +## Classes to package in client module for all WEB wrappers +ts.wrappers.classes.web.client=\ + ${ts.wrappers.web.root}/WebServer.class + +## Classes to package in war for all WEB wrappers +ts.wrappers.classes.web.server=\ + ${ts.wrappers.web.root}/WebUtil.class, \ + ${ts.wrappers.web.root}/JSPBeanWrapper.class, \ + ${ts.wrappers.web.root}/ServletWrapper.class + +## Classes to package in client module for Servlet wrapper +ts.wrappers.classes.servlet.client=${ts.wrappers.classes.web.client} + +## Classes to package in war for Servlet wrappers +ts.wrappers.classes.servlet.server=\ + ${ts.wrappers.web.root}/WebUtil.class, \ + ${ts.wrappers.web.root}/ServletWrapper.class + +## Classes to package in client module for JSP wrapper +ts.wrappers.classes.jsp.client=${ts.wrappers.classes.web.client} + +## Classes to package in war for JSP wrappers +ts.wrappers.classes.jsp.server=\ + ${ts.wrappers.web.root}/WebUtil.class, \ + ${ts.wrappers.web.root}/JSPBeanWrapper.class + + +############################################################################### +## DO NOT MODIFY ANY PROPERTIES BELOW THIS LINE. +############################################################################### + +#classpath used by standard deployment server to deploy to the RI in a separate +#VM (DO NOT MODIFY) +ts.standard.deployment.server.classpath=${ant.jars}:${pathsep}${ts.run.classpath.ri}${pathsep}${ts.home}/lib/javatest.jar${pathsep}${ts.home}/lib/jdom-1.1.3.jar${pathsep}${ri.modules}/admin-cli.jar + +harness.deployment.server.port=2002 + +java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory +org.omg.CORBA.ORBClass=foo +undeploy_redeploy_apps=${UNDEPLOY_REDEPLOY_FLAG} + +############################################################################### +# The following properties are aliases for the old J2EE properties. These +# properties are now named javaee instead of j2ee and will eventually be phased +# out of the CTS. These props are necessary until the props are renamed +# through out all CTS. +############################################################################### +j2ee.home=${javaee.home} +j2ee.home.ri=${javaee.home.ri} + +#################################################################### +## This propertry is passed to any test +## that needs to programatically login from with the appclient +## container and propogate that login context to test code running +## within the EJB container. The value is a no-op. The fact that +## the test includes the property is sufficient to cause the +## EJBVehicleRunner to programatically login. To have a test +## include this property simply add it to the javatest props list +## of the test. +#################################################################### +secured.ejb.vehicle.client=true + +#################################################################### +# This property is used to point to the location of the +# implementation of VariableMapper. The value for sjsas 9.x is +# +# variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl +# +#################################################################### +variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl + +####################################################################### +# Endpoint API test +# +# Port info is obtained dynamically for Endpoint API test. +# Uncomment port range min/max if you want to specify port range +# for Endpoint publish test. +# Server endpoints will be published on ports within this range. +# If you do not want to dynamically obtain the port but wish to publish +# to a fixed static port than make the values below both equal to the +# specific port. +####################################################################### +port.range.min=1025 +port.range.max=10000 + +################################################################ +# @http.server.supports.endpoint.publish +# Does HTTP server-side support endpoint publish API's. +# @http.server.supports.endpoint.publish.2 +# Does the RI HTTP server-side support endpoint publish API's. +# +# http.server.supports.endpoint.publish=(true|false) +# DO NOT TOUCH - value MUST be false for managed environments like Java EE +################################################################ +http.server.supports.endpoint.publish=false +http.server.supports.endpoint.publish.2=false + +########################################################################### +# This property is used by some test clients that need a delay between +# method invocations to server endpoints. The value specified is the amount +# of time the client will delay in seconds. +########################################################################### +client.delay=1 + +####################################################################### +## This persistence unit name is used by jpa/ee/pluggability tests. Its value is the +## same as the name attribute in persistence.xml +###################################################################### +persistence.unit.name=CTS-EM + +############################################################### +# @db.supports.sequence +# +# - This property is used to determine if a database supports +# the use of SEQUENCE. If it does not, this property +# should be set to false so the test is not run. The +# default value is true. +# This value should be set to false for the following databases: +# sybase, mysql, and mssqlserver. +############################################################### +db.supports.sequence=true + +####################################################################### +## @persistence.second.level.caching.supported +## - This property is used to determine if the persistence provider supports +## second level caching. +###################################################################### +persistence.second.level.caching.supported=true + +########################################################################## +## This section contains all properties that are specific to JAX-RS Tests. +## All default values are specific to GlassFish and Jersey. +## +## servlet_adaptor - implementation specific servlet for JAX-RS +## jaxrs_impl_class.dir - Directory that servlet_adaptor locates +## jaxrs_impl_name - used to tag intermediate file names +########################################################################## +servlet_adaptor=org/glassfish/jersey/servlet/ServletContainer.class +jaxrs_impl_lib=${javaee.home}/modules/jakarta.ws.rs-api.jar +jaxrs_impl_name=jersey + + +########################################################################## +# This section contains all properties that are specific to JSR-196 Tests. +# All default values are specific to GlassFish. +# +# @servlet.is.jsr115.compatible This property is used by JASPIC tests +# to determine if the servlet container is a jsr 115 compatible +# container. (true = compatible to JSR 115, false = not compatible.) +# +# @soap.is.jsr115.compatible This may used by JASPIC tests to +# determin if the SOAP container is JSR 115 compatible. This is +# only used when running SOAP profile tests. +# +# @provider.configuration.file +# This property is used by JASPIC tests to configure TestSuite's +# AuthConfig Provider and points at an xml file which is used +# to register the JASPIC test providers into the current +# ACF. This file contaiins known/expected test provider info. +# Only app-context-id element can be edited to suit the +# impl under test. +# +# @schema.file.location +# This points to the directory that the provider-configuration.xsd +# file will live. The provider-configuration.xsd is used to +# describe the provider.configuration.file (above). +# +# @logical.hostname.servlet +# This used to identify the the name of a logical host that +# processes Servlet requests. Servlet requests may be directed to +# a logical host using various physical or virtual host names or +# addresses, and a message processing runtime may be composed of +# multiple logical hosts (This is required to properly identify +# the servlet profiles AppContextId hostname.) +# If a logical.hostname.servlet does not exist, you can set this +# to the default hostname (eg webServerHost). +# +# @logical.hostname.soap +# This property is used to identify the name of the logical host +# that processes soap requests. This hostname is used in server +# side Application context Identifier in soap profile. +# +# @appclient.log.output +# The client logging level for appclient container depends on the +# log level specified in sun-acc.xml +# +# This log level directly affects the output of TSLogger which +# logs the JSR196 SPI calls made in appclient container. +# +# using this property we enable the appclient container's +# logging level to INFO +# +# @vendor.authconfig.factory +# This property specifies vendor's authconfig factory class +# this will be used by JASPIC tests to register TestSuite's +# provider in Vendor's AuthConfig Factory. +# +# For example for SJSAS RI this value is +# +# vendor.authconfig.factory= +# com.sun.enterprise.security.jmac.config.GFAuthConfigFactory +# +########################################################################## +servlet.is.jsr115.compatible=true +soap.is.jsr115.compatible=false +provider.configuration.file=${javaee.home}/domains/domain1/config/ProviderConfiguration.xml +schema.file.location=${javaee.home}/lib/schemas +logical.hostname.servlet=server +logical.hostname.soap=localhost +appclient.log.output=true +vendor.authconfig.factory=com.sun.enterprise.security.jmac.config.GFAuthConfigFactory + +########################################################################## +# @servlet_waittime: Time in seconds to wait after HttpSession expires +# to access the session +# @servlet_async_wait: Time in seconds to wait between sending asynchronous messages +########################################################################## +servlet_waittime=10 +servlet_async_wait=4 + +########################################################################################## +# The following properties are ONLY used if testing a Standalone JMS Resource Adapter. +# Since support for a JMS Resource Adapter is OPTIONAL by the JMS 2.0 Specification +# this funtionality is USE AT YOUR OWN RISK. We WILL NOT support it. Its here in the +# case that a vendor wants to test a Standalone JMS Resource Adapter which is OPTIONAL. +# +# test.sa.jmsra // Set to true ONLY if testing a standalone JMS Resource Adapter +# jmsra.rarfile // Location of the standalone JMS Resource Adapter RAR file +# jmsra.jarfile // Location of the standalone JMS Resource Adapter JAR file +# +# A standalone JMS Resource Adapter requires deployment/configuration to the Vendor +# Implementation under test (Example: Java EE 8 RI). If not testing a standalone JMS +# Resource Adapter then these properties MUST NOT be used and the value of the property +# (test.sa.jmsra) MUST BE SET to false (which is the DEFAULT setting). If you set the +# property (test.sa.jmsra=true) then you are testing a standalone JMS Resource Adapter +# and the (jmsra.rarfile and jmsra.jarfile) properties must point to the location of +# the standalone JMS Resource Adapter RAR and JAR files. During CTS configuration the +# (config.vi) ant task will call another script that will deploy the standalone JMS +# Resource Adapter, configure the standalone JMS Resource Adapter, create the JMS +# connector connection pools, create the JMS connector resources, and finally create +# the JMS administration objects. The ant scripts that handles all of these steps for +# the (Java EE 8 RI) are the following: +# +# $TS_HOME/bin/xml/impl/glassfish/jmsra.xml +# $TS_HOME/bin/xml/impl/glassfish/templates/create.jmsra.template +# +# These scripts work for the Standalone Generic JMS Resource Adapter (GenericJMSRA) +# located at: (http://genericjmsra.java.net/). If testing another standalone JMS +# Resource Adapter then these scripts will need to be rewritten/modified for that +# JMS Resource Adapter. +# +# Here is the summary of steps of what the (jmsra.xml) script does. It configures the JMS +# resource adapter by doing a resource-adapter-config, it deploys the JMS resource adapter +# RAR file specified in the "jmsra.rarfile" property to the (Java EE 8 RI), it copies the +# JMS Resource Adapter JAR file specified in the "jmsra.jarfile" property to the (Java EE +# 8 RI) lib directory under $JAVAEE_HOME/lib. It copies some of the JMS client library jars +# to the $JAVAEE_HOME/lib directory. it then creates the JMS connector connection pools, +# the JMS connector resources, and the JMS administration objects that are needed by CTS. +# When the (config.vi) ant task completes the Java EE 8 environment will be ready to run +# the JMS CTS tests. One final step is needed to the JMS MDB CTS tests which is to modify +# the sun-ejb-jar runtime xml files by adding the deployment info. +# +# Here are the manual steps for the Standalone Generic JMS Resource Adapter (GenericJMSRA) +# after the (config.vi) ant task completes. +# +# (1) Edit the ts.jte file and add the following: +# Add "-Dgenericra.inAppClientContainer=true" to the "command.testExecuteAppClient" +# property and then add "${pathsep}${jmsra.jarfile}" to the end of APPCPATH variable +# in the same "command.testExecuteAppClient" property. You can refer to the Generic +# JMS Resource Adapter (GenericJMSRA) user guide for more information on this. +# (2) Modify the sun-ejb-jar runtime xml files for the JMS MDB tests by adding the +# deployment info. +# cd $TS_HOME/bin +# ant -f xml/impl/glassfish/jmsra.xml modify-jmsmdbejbxml +# (3) Now you can run the JMS CTS tests. After you are done running the JMS CTS tests ypu +# can unconfigure the Java EE 8 RI and restore the original sun-ejb-jar runtime xml +# files. +# cd $TS_HOME/bin +# ant -f xml/impl/glassfish/jmsra.xml restore-jmsmdbejbxml +# ant clean.vi +# (4) Finally reset the properties back to there defaults. Set (test.sa.jmsra=false) and unset +# (jmsra.rarfile and jmsra.jarfile). Remove the "-Dgenericra.inAppClientContainer=true" +# and "${pathsep}${jmsra.jarfile}" from the ts.jte file from step 1. +# +# If using a different Java EE environment from the Java EE RI than a vendor will need to +# provide his own JMS Resource Adapter support scripts needed for that Java EE environment. +# It can reuse/modify the (Java EE 8 RI) scripts above or simply write their own scripts. A +# vendor can use the Java EE 8 RI or any Java EE 8 implementation of its choice as the Java +# EE 8 environment for testing its Standalone JMS Resource Adapter. The Standalone JMS Resource +# Adapter MUST pass all of the JMS CTS tests under: (TS_HOME/src/com/sun/ts/tests/jms) in order +# to be declared fully JMS 2.0 compliant. +# +# See the JMS 2.0 Specification and the CTS 8 User's Guide for more information. +########################################################################################## +test.sa.jmsra=false +jmsra.rarfile= +jmsra.jarfile= + +########################################################################################## +# The following property specifies the name of the JMS Resource Adapter under test. The +# Java EE 8 RI contains its own builtin JMS Resource Adapter (JMSRA). Its name is "jmsra". +# So we set (jmsra.name=jmsra) as the default value for the Java EE 8 RI. +# +# Change the value of this property for the JMS Resource Adapter that is under test. This +# hardcoded value is specific to the Java EE 8 RI. +# +# jmsra.name // Name of JMS Resource Adapter for the implementation under test +########################################################################################## +jmsra.name=jmsra + + +########################################################################## +# The following property is for WebSocket tests. +# +# @ws_wait: waiting time in seconds for socket to send/receive a message +########################################################################## +ws_wait=5 + +############################################################################################ +# These following properties are needed for Javamail tests. +# +# @mailHost hostname of the mail server +# @mailuser1 must be set to a valid email address where test mails will be sent to. +# @mailFrom reply to address set in the email messages generated by the javamail tests +# @javamail.username user account name on server +# @javamail.password password for the mailuser1 +# +############################################################################################ + +mailHost=localhost +mailuser1=user01@james.local +mailFrom=user01@james.local +javamail.password=1234 +smtp.port=1025 +imap.port=1143 + +### User need not change the following javamail properties + +javamail.username=${mailuser1} +transport_protocol=smtp + +# mail server used to run tests against. +javamail.server=${mailHost} + +# protocol used to run the Store tests +javamail.protocol=imap + +# mail server used to run tests against. +javamail.transport.server=$javamail.server + +# rootpath of test mailboxes +javamail.root.path=mailboxes + +# note the mailbox 'test1' +javamail.mailbox=test1 + +# search pattern used by list tests in Folder +javamail.listpattern=test + +# your own login account name +smtp.username=$javamail.username + +# smtp domain name ; i.e. oracle.com +smtp.domain=$javamail.server + +# smtp From address +smtp.from=$smtp.username + +# smtp To address +smtp.to=$smtp.username + +# io file +iofile=MailIOFile.txt + +##################################################################################################### +#### Properties used by ldap installation +# @ldap.server -- The type of ldap server. unboundid is supported by now +# @ldap.install.server -- Install ldap server by CTS script or not +# @ldap.ldif.file -- The ldif file containing data seeded in ldap server +# +# @unboundid.installation.package -- The package for installing Unboundid ldap server +######################################################################################################## +ldap.server=unboundid +ldap.install.server=true +ldap.ldif.file=${ts.home}/bin/ldap.ldif + +unboundid.installation.package=${ts.home}/lib/unboundid-ldapsdk.jar + +##################################################################################################### +# Properties used for JPA 2.2 Tests +######################################################################################################## +persistencs.properties.file=${bin.dir}/jpa-provider.properties +persistence.unit.name.2=JPATCK2 + +jpa.provider.implementation.specific.properties=eclipselink.logging.level\=OFF +jakarta.persistence.provider=org.eclipse.persistence.jpa.PersistenceProvider +jakarta.persistence.jdbc.driver=${derby.driver} +jakarta.persistence.jdbc.url=${derby.url} +jakarta.persistence.jdbc.user=${derby.user} +jakarta.persistence.jdbc.password=${derby.passwd} diff --git a/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/tssql.stmt b/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/tssql.stmt new file mode 100644 index 0000000000..2d279c5402 --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/jakartaeetck/bin/tssql.stmt @@ -0,0 +1,805 @@ +# @(#)ctssql.dml.derby 1.16 01/06/20 +#------------------------------------------------- +#All sql DML statements used in the test cases against derby +#------------------------------------------------- + + + +Dbschema_Tab1_Insert=insert into ctstable2 values(?, ?, ?, ?) +Dbschema_Tab2_Insert=insert into ctstable1 values(?, ?) + +Dbschema_Tab1_Delete=delete from ctstable2 +Dbschema_Tab2_Delete=delete from ctstable1 + +Dbschema_Concur_Insert=insert into concurrencetable values(?, ?) +Dbschema_Concur_Delete=delete from concurrencetable + +#****************************************************************** +# SQL Statements for creating procedures in side the test. +#****************************************************************** + +UpdCoffee_Proc=create method alias UpdCoffee_Proc for com.sun.ts.lib.tests.jdbc.CS_Procs.UpdCoffee_Proc + +#****************************************************************** +# SQL Statements for deleting tables for appropriate JDBC Datatypes +#****************************************************************** + +Numeric_Tab_Delete=delete from Numeric_Tab + +Decimal_Tab_Delete=delete from Decimal_Tab + +Double_Tab_Delete=delete from Double_Tab + +Float_Tab_Delete=delete from Float_Tab + +Real_Tab_Delete=delete from Real_Tab + +Bit_Tab_Delete=delete from Bit_Tab + +Smallint_Tab_Delete=delete from Smallint_Tab + +Tinyint_Tab_Delete=delete from Tinyint_Tab + +Integer_Tab_Delete=delete from Integer_Tab + +Bigint_Tab_Delete=delete from Bigint_Tab + +Char_Tab_Delete=delete from Char_Tab + +Varchar_Tab_Delete=delete from Varchar_Tab + +Longvarchar_Tab_Delete=delete from Longvarchar_Tab + +Longvarcharnull_Tab_Delete=delete from Longvarcharnull_Tab + +Date_Tab_Delete=delete from Date_Tab + +Time_Tab_Delete=delete from Time_Tab + +Timestamp_Tab_Delete=delete from Timestamp_Tab + +Binary_Tab_Delete=delete from Binary_Tab + +Varbinary_Tab_Delete=delete from Varbinary_Tab + +Longvarbinary_Tab_Delete=delete from Longvarbinary_Tab + + + +#**************************************************** +# SQL Statements for inserting values into the tables +#**************************************************** + +Numeric_Tab_Insert=insert into Numeric_Tab values(999999999999999,0.000000000000001, null) + +Decimal_Tab_Insert= insert into Decimal_Tab values(999999999999999,0.000000000000001, null) + +#Double_Tab_Insert=insert into Double_Tab values(1.7976931348623157E308,4.9E-324,null) +Double_Tab_Insert=insert into Double_Tab values(1.0E125,1.0E-130,null) + +Float_Tab_Insert=insert into Float_Tab values(3.4028235E37,1.4E-45,null) + +Real_Tab_Insert= insert into Real_Tab values(3.402E38,1.4E-37, null) + +Bit_Tab_Insert=insert into Bit_Tab values(true,false,null) + +Smallint_Tab_Insert= insert into Smallint_Tab values(32767,-32768,null) + +Tinyint_Tab_Insert=insert into Tinyint_Tab values(127,0,null) + +Integer_Tab_Insert=insert into Integer_Tab values(2147483647,-2147483648,null) + +Bigint_Tab_Insert= insert into Bigint_Tab values(9223372036854775807,-9223372036854775808,null) + +Char_Tab_Insert= insert into Char_Tab values('Test Coffee', null) + +Varchar_Tab_Insert= insert into Varchar_Tab values('Test Coffee',null) + +Longvarchar_Tab_Insert= insert into Longvarchar_Tab values('Test Coffee') + +Longvarcharnull_Tab_Insert= insert into Longvarcharnull_Tab values(null) + +Date_Tab_Insert=insert into Date_Tab values({d '1999-05-05'}, null) + +Time_Tab_Insert= insert into Time_Tab values({t '12:59:59'}, null) + +Timestamp_Tab_Insert= insert into Timestamp_Tab values({ts '1999-12-31 12:59:59'}, null) + +Binary_Tab_Insert= insert into Binary_Tab values(null) + +Varbinary_Tab_Insert= insert into Varbinary_Tab values(null) + +Longvarbinary_Tab_Insert= insert into Longvarbinary_Tab values(null) + +Boolean_Tab_Insert = insert into Boolean_Tab values(true,false,null) + + +#***************************************************** +# SQL Statements for retrieving values from the tables +#***************************************************** + +SelCoffeeAll=SELECT COF_NAME, PRICE FROM ctstable2 +SelCoffeeNull=select * from ctstable2 where TYPE_ID=0 + +Numeric_Query_Max=Select MAX_VAL from Numeric_Tab +Numeric_Query_Min=Select MIN_VAL from Numeric_Tab +Numeric_Query_Null=Select NULL_VAL from Numeric_Tab + +Decimal_Query_Max=Select MAX_VAL from Decimal_Tab +Decimal_Query_Min=Select MIN_VAL from Decimal_Tab +Decimal_Query_Null=Select NULL_VAL from Decimal_Tab + +Double_Query_Max=Select MAX_VAL from Double_Tab +Double_Query_Min=Select MIN_VAL from Double_Tab +Double_Query_Null=Select NULL_VAL from Double_Tab + +Float_Query_Max=Select MAX_VAL from Float_Tab +Float_Query_Min=Select MIN_VAL from Float_Tab +Float_Query_Null=Select NULL_VAL from Float_Tab + +Real_Query_Max=Select MAX_VAL from Real_Tab +Real_Query_Min=Select MIN_VAL from Real_Tab +Real_Query_Null=Select NULL_VAL from Real_Tab + +Bit_Query_Max=Select MAX_VAL from Bit_Tab +Bit_Query_Min=Select MIN_VAL from Bit_Tab +Bit_Query_Null=Select NULL_VAL from Bit_Tab + +Smallint_Query_Max=Select MAX_VAL from Smallint_Tab +Smallint_Query_Min=Select MIN_VAL from Smallint_Tab +Smallint_Query_Null=Select NULL_VAL from Smallint_Tab + +Tinyint_Query_Max=Select MAX_VAL from Tinyint_Tab +Tinyint_Query_Min=Select MIN_VAL from Tinyint_Tab +Tinyint_Query_Null=Select NULL_VAL from Tinyint_Tab + +Integer_Query_Max=Select MAX_VAL from Integer_Tab +Integer_Query_Min=Select MIN_VAL from Integer_Tab +Integer_Query_Null=Select NULL_VAL from Integer_Tab + +Bigint_Query_Max=Select MAX_VAL from Bigint_Tab +Bigint_Query_Min=Select MIN_VAL from Bigint_Tab +Bigint_Query_Null=Select NULL_VAL from Bigint_Tab + +Char_Query_Name=Select COFFEE_NAME from Char_Tab +Char_Query_Null=Select NULL_VAL from Char_Tab + +Varchar_Query_Name=Select COFFEE_NAME from Varchar_Tab +Varchar_Query_Null=Select NULL_VAL from Varchar_Tab + +Longvarchar_Query_Name=Select COFFEE_NAME from Longvarchar_Tab +Longvarchar_Query_Null=Select NULL_VAL from Longvarcharnull_Tab + +Date_Query_Mfg=Select MFG_DATE from Date_Tab +Date_Query_Null=Select NULL_VAL from Date_Tab + +Time_Query_Brk=Select BRK_TIME from Time_Tab +Time_Query_Null=Select NULL_VAL from Time_Tab + +Timestamp_Query_In=Select IN_TIME from Timestamp_Tab +Timestamp_Query_Null=Select NULL_VAL from Timestamp_Tab + +Binary_Query_Val=Select BINARY_VAL from Binary_Tab +Varbinary_Query_Val=Select VARBINARY_VAL from Varbinary_Tab +Longvarbinary_Query_Val=Select LONGVARBINARY_VAL from Longvarbinary_Tab + + + + + +#*************************************** +# SQL Statements for updating the tables +#*************************************** + +Numeric_Tab_Max_Update=update Numeric_Tab set MAX_VAL=? +Numeric_Tab_Min_Update=update Numeric_Tab set MIN_VAL=? +Numeric_Tab_Null_Update=update Numeric_Tab set NULL_VAL=? + +Decimal_Tab_Max_Update=update Decimal_Tab set MAX_VAL=? +Decimal_Tab_Min_Update=update Decimal_Tab set MIN_VAL=? +Decimal_Tab_Null_Update=update Decimal_Tab set NULL_VAL=? + +Double_Tab_Max_Update=update Double_Tab set MAX_VAL=? +Double_Tab_Min_Update=update Double_Tab set MIN_VAL=? +Double_Tab_Null_Update=update Double_Tab set NULL_VAL=? + +Float_Tab_Max_Update=update Float_Tab set MAX_VAL=? +Float_Tab_Min_Update=update Float_Tab set MIN_VAL=? +Float_Tab_Null_Update=update Float_Tab set NULL_VAL=? + +Real_Tab_Max_Update=update Real_Tab set MAX_VAL=? +Real_Tab_Min_Update=update Real_Tab set MIN_VAL=? +Real_Tab_Null_Update=update Real_Tab set NULL_VAL=? + +Bit_Tab_Max_Update=update Bit_Tab set MAX_VAL=? +Bit_Tab_Min_Update=update Bit_Tab set MIN_VAL=? +Bit_Tab_Null_Update=update Bit_Tab set NULL_VAL=? + +Smallint_Tab_Max_Update=update Smallint_Tab set MAX_VAL=? +Smallint_Tab_Min_Update=update Smallint_Tab set MIN_VAL=? +Smallint_Tab_Null_Update=update Smallint_Tab set NULL_VAL=? + +Tinyint_Tab_Max_Update=update Tinyint_Tab set MAX_VAL=? +Tinyint_Tab_Min_Update=update Tinyint_Tab set MIN_VAL=? +Tinyint_Tab_Null_Update=update Tinyint_Tab set NULL_VAL=? + +Integer_Tab_Max_Update=update Integer_Tab set MAX_VAL=? +Integer_Tab_Min_Update=update Integer_Tab set MIN_VAL=? +Integer_Tab_Null_Update=update Integer_Tab set NULL_VAL=? + +Bigint_Tab_Max_Update=update Bigint_Tab set MAX_VAL=? +Bigint_Tab_Min_Update=update Bigint_Tab set MIN_VAL=? +Bigint_Tab_Null_Update=update Bigint_Tab set NULL_VAL=? + +Char_Tab_Name_Update=update Char_Tab set COFFEE_NAME=? +Char_Tab_Null_Update=update Char_Tab set NULL_VAL=? + +Varchar_Tab_Name_Update=update Varchar_Tab set COFFEE_NAME=? +Varchar_Tab_Null_Update=update Varchar_Tab set NULL_VAL=? + +Longvarchar_Tab_Name_Update=update Longvarchar_Tab set COFFEE_NAME=? +Longvarchar_Tab_Null_Update=update Longvarcharnull_Tab set NULL_VAL=? + +Date_Tab_Mfgdate_Update=update Date_Tab set MFG_DATE=? +Date_Tab_Null_Update=update Date_Tab set NULL_VAL=? + +Time_Tab_Brktime_Update=update Time_Tab set BRK_TIME=? +Time_Tab_Null_Update=update Time_Tab set NULL_VAL=? + +Timestamp_Tab_Intime_Update=update Timestamp_Tab set IN_TIME=? +Timestamp_Tab_Null_Update=update Timestamp_Tab set NULL_VAL=? + +Binary_Tab_Val_Update=update Binary_Tab set BINARY_VAL=? +Varbinary_Tab_Val_Update=update Varbinary_Tab set VARBINARY_VAL=? +Longvarbinary_Tab_Val_Update=update Longvarbinary_Tab set LONGVARBINARY_VAL=? + +CoffeeTab_Query=select COF_NAME,PRICE from ctstable2 where TYPE_ID=? +CoffeeTab_Delete=delete from ctstable2 where KEY_ID=? + +CoffeeTab_Select=select PRICE from ctstable2 where KEY_ID=? +CoffeeTab_Update=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=? + +Ins_Coffee_Tab=insert into ctstable2 values (9,'COFFEE-9',9.0,5) +Del_Coffee_Tab=delete from ctstable2 where KEY_ID=9 +Upd_Coffee_Tab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1 +Sel_Coffee_Tab=select PRICE from ctstable2 where KEY_ID>4 + +#********************************************************************************** +# is used in ResultSet. To update with BIT value. +#********************************************************************************** +Update_decimal_tab=update Decimal_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=null +Update_numeric_tab=update Numeric_Tab set MAX_VAL=1.0, MIN_VAL=0.0, NULL_VAL=null +Update_char_tab1=update Char_Tab set COFFEE_NAME=1, NULL_VAL=null +Update_char_tab2=update Char_Tab set COFFEE_NAME=0, NULL_VAL=null +Update_varchar_tab1=update Varchar_Tab set COFFEE_NAME=1, NULL_VAL=null +Update_varchar_tab2=update Varchar_Tab set COFFEE_NAME=0, NULL_VAL=null + +#********************************************************************************** +# is used in BatchUpdate Tests. +#********************************************************************************** +BatchUpdate_Query=select count(*) from ctstable2 where TYPE_ID=? +BatchUpdate_Delete=delete from ctstable2 +BatchInsert_String=insert into ctstable2 values(?,?,?,?) + +#********************************************************************************** +# is used in BatchUpdate exception +#********************************************************************************** +Coffee_InsTab=insert into ctstable2 values (9,'COFFEE-9',9.0,5) +Coffee_DelTab=delete from ctstable2 where KEY_ID=2 +Coffee_UpdTab=update ctstable2 set PRICE=PRICE*20 where TYPE_ID=1 +Coffee_SelTab=select PRICE from ctstable2 where KEY_ID>4 +Coffee_Inscount_Query=select count(*) from ctstable2 where KEY_ID=9 +Coffee_Delcount_Query=select count(*) from ctstable2 where KEY_ID=2 +Coffee_Updcount_Query=select count(*) from ctstable2 where TYPE_ID=1 +CoffeeTab_Continue1=update ctstable2 set KEY_ID=?, COF_NAME=? where COF_NAME=? +CoffeeTab_ContinueSelect1=Select count(*) from ctstable2 where COF_NAME in ('Continue-1') +CoffeeTab_Continue2=update ctstable2 set KEY_ID=1,COF_NAME = 'Continue-1' where COF_NAME='COFFEE-1' +CoffeeTab_Continue3=update ctstable2 set KEY_ID=1 ,COF_NAME = 'Invalid' where COF_NAME='COFFEE-3' +CoffeeTab_Continue4=update ctstable2 set KEY_ID=2,COF_NAME = 'Continue-3' where COF_NAME='COFFEE-2' +Coffee_Proc1=create procedure Coffee_Proc1(keyid in Numeric) as begin update ctstable2 set KEY_ID=keyid,COF_NAME = 'Continue-1' where KEY_ID=1;end; +Coffee_Proc1_Delete=Drop procedure Coffee_Proc1 +#********************************************************************************** +# is used in DataTruncation exception +#********************************************************************************** +DTrunc_Ins_Coffee=insert into ctstable2 values (10,'kumarjadjsjdhsjhdjsjdajhdjasdsdsdsd',21.00,1) + +#********************************************************************************** +# is used in SQLException +#********************************************************************************** +Error_Query=select * from + +#********************************************************************************** +# Constructor arguments for exceptions +#********************************************************************************** +Reason_BatUpdExec=Message +SQLState_BatUpdExec=S100 +VendorCode_BatUpdExec=10 +IntialValue_BatUpdExec={1,1,1} +Index_DataTrunc=1 +Param_DataTrunc=true +Read_DataTrunc=true +DataSize_DataTrunc=100 +TranSize_DataTrunc=50 + +#********************************************************************************** +# is used to print a message to the current logging writer +#********************************************************************************** +JDBCLogstream_Message=Hello World + + +#********************************************************************************** +#The following pair of values are related and so must be changed simultaneously +#The first one is a reference value and the second one is a equivalent in millisecond after epoch +#********************************************************************************** +DateTime_Str_Val1=1970-01-02 00:00:00.001 +DateTime_Long_Val1=86400001 + +#********************************************************************************** +#The following pair of values are related and so must be changed simultaneously +#The first one is a reference value and the second one is a equivalent in millisecond after epoch +#********************************************************************************** +DateTime_Str_Val2=1969-12-30 23:59:59.999 +DateTime_Long_Val2=-86400001 + +#********************************************************************************** +#value in millisecond for testing after() and before() in Timestamp +#********************************************************************************** +Ref_Milli_Val = 86400000 + +#********************************************************************************** +#Value in nanoseconds for testing time values +#********************************************************************************** +Ref_Nano_Val = 999999999 + + +#********************************************************************************** +#Value in nanoseconds and must be equivalent equivalent to multiples of milliseconds +#********************************************************************************** +Ref_Nano_Val2 = 1000000 + +Trial_String=TrialSetting +Escape_Seq_Query=select count(*) from ctstable2 where cof_name like '\%-%' { escape '\\' } +Escape_Seq_ChkQuery=select count(*) from ctstable2 +Max_Set_Val=10 + + +#********************************************************************************** +#The SQL Statements which are used to test the Scalar functions using escape syntax +#********************************************************************************** +Concat_Fn_Query=SELECT {FN CONCAT(STRING1,STRING2)} FROM ctstable3 +Ascii_Fn_Query=SELECT {FN ASCII(STRING1)} FROM ctstable3 +Insert_Fn_Query=SELECT {FN INSERT(STRING1,2,4,STRING2)} FROM ctstable3 +Lcase_Fn_Query=SELECT {FN LCASE(STRING1)} FROM ctstable3 +Left_Fn_Query=SELECT {FN LEFT(STRING1,2)} FROM ctstable3 +Length_Fn_Query=SELECT {FN LENGTH(STRING1)} FROM ctstable3 +Locate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2)} FROM ctstable3 +Ltrim_Fn_Query=SELECT {FN LTRIM(STRING2)} FROM ctstable3 +Repeat_Fn_Query=SELECT {FN REPEAT(STRING1,3)} FROM ctstable3 +Right_Fn_Query=SELECT {FN RIGHT(STRING1,3)} FROM ctstable3 +Rtrim_Fn_Query=SELECT {FN RTRIM(STRING2)} FROM ctstable3 +Soundex_Fn_Query=SELECT {FN SOUNDEX(STRING1)} FROM ctstable3 +Space_Fn_Query=SELECT {FN SPACE(5)} FROM ctstable3 +Substring_Fn_Query=SELECT {FN SUBSTR(STRING2,2,3)} FROM ctstable3 +Ucase_Fn_Query=SELECT {FN UCASE(STRING1)} FROM ctstable3 +Char_Fn_Query=SELECT {FN CHAR(NUMCOL)} FROM ctstable3 +Replace_Fn_Query=SELECT {FN REPLACE(STRING2,STRING1,STRING3)} FROM ctstable3 +User_Fn_Query=SELECT {FN USER()} FROM ctstable3 +Ifnull_Fn_Query=SELECT {FN IFNULL(STRING1,100)} FROM ctstable3 +Sin_Fn_Query=SELECT {FN SIN(0)} FROM ctstable3 +Abs_Fn_Query=SELECT {FN ABS(NUMCOL)} FROM ctstable3 +Power_Fn_Query=SELECT {FN POWER(NUMCOL,2)} FROM ctstable3 +Round_Fn_Query=SELECT {FN ROUND(FLOATCOL,2)} FROM ctstable3 +Sign_Fn_Query=SELECT {FN SIGN(NUMCOL)} FROM ctstable3 +Sqrt_Fn_Query=SELECT {FN SQRT(FLOATCOL)} FROM ctstable3 +Truncate_Fn_Query=SELECT {FN TRUNCATE(FLOATCOL,1)} FROM ctstable3 +Mod_Fn_Query=SELECT {FN MOD(NUMCOL,7)} FROM ctstable3 +Floor_Fn_Query=SELECT {FN FLOOR(FLOATCOL)} FROM ctstable3 +Ceiling_Fn_Query=SELECT {FN CEILING(NUMCOL)} FROM ctstable3 +Log10_Fn_Query=SELECT {FN LOG10(NUMCOL)} FROM ctstable3 +Log_Fn_Query=SELECT {FN LOG(NUMCOL)} FROM ctstable3 +Exp_Fn_Query=SELECT {FN EXP(FLOATCOL)} FROM ctstable3 +Cos_Fn_Query=SELECT {FN COS(FLOATCOL)} FROM ctstable3 +Tan_Fn_Query=SELECT {FN TAN(FLOATCOL)} FROM ctstable3 +Cot_Fn_Query=SELECT {FN COT(FLOATCOL)} FROM ctstable3 +Curdate_Fn_Query=SELECT {FN CURDATE()} FROM ctstable3 +Dayname_Fn_Query=SELECT {FN DAYNAME(DATECOL)} FROM ctstable3 +Dayofmonth_Fn_Query=SELECT {FN DAYOFMONTH(DATECOL)} FROM ctstable3 +Dayofweek_Fn_Query=SELECT {FN DAYOFWEEK(DATECOL)} FROM ctstable3 +Dayofyear_Fn_Query=SELECT {FN DAYOFYEAR(DATECOL)} FROM ctstable3 +Week_Fn_Query=SELECT {FN WEEK(DATECOL)} FROM ctstable3 +Month_Fn_Query=SELECT {FN MONTH(DATECOL)} FROM ctstable3 +Year_Fn_Query=SELECT {FN YEAR(DATECOL)} FROM ctstable3 +Monthname_Fn_Query=SELECT {FN MONTHNAME(DATECOL)} FROM ctstable3 +Quarter_Fn_Query=SELECT {FN QUARTER(DATECOL)} FROM ctstable3 +Now_Fn_Query=SELECT {FN NOW()} FROM ctstable3 +Hour_Fn_Query=SELECT {FN HOUR(TIMECOL)} FROM ctstable3 +Minute_Fn_Query=SELECT {FN MINUTE(TIMECOL)} FROM ctstable3 +Second_Fn_Query=SELECT {FN SECOND(TIMECOL)} FROM ctstable3 +Database_Fn_Query=SELECT {FN DATABASE()} FROM ctstable3 +Acos_Fn_Query=SELECT {FN ACOS(FLOATCOL)} FROM ctstable3 +Asin_Fn_Query=SELECT {FN ASIN(FLOATCOL)} FROM ctstable3 +Atan_Fn_Query=SELECT {FN ATAN(FLOATCOL)} FROM ctstable3 +Atan2_Fn_Query=SELECT {FN ATAN2(FLOATCOL,FLOATCOL)} FROM ctstable3 +Degrees_Fn_Query=SELECT {FN DEGREES(NUMCOL)} FROM ctstable3 +Radians_Fn_Query=SELECT {FN RADIANS(NUMCOL)} FROM ctstable3 +Pi_Fn_Query=SELECT {FN PI()} FROM ctstable3 +Rand_Fn_Query=SELECT {FN RAND(NUMCOL)} FROM ctstable3 +Difference_Fn_Query=SELECT {FN DIFFERENCE(STRING1,STRING2)} FROM ctstable3 +Locate_Fn_Query=SELECT {FN LOCATE(STRING1,STRING2,2)} FROM ctstable3 +Timestampaddfrac_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_FRAC_SECOND,2,TSCOL1)} FROM ctstable3 +Timestampaddsecond_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_SECOND,2,TSCOL1)} FROM ctstable3 +Timestampaddminute_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MINUTE,2,TSCOL1)} FROM ctstable3 +Timestampaddhour_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_HOUR,2,TSCOL1)} FROM ctstable3 +Timestampaddday_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_DAY,2,TSCOL1)} FROM ctstable3 +Timestampaddweek_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_WEEK,2,TSCOL1)} FROM ctstable3 +Timestampaddmonth_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_MONTH,2,TSCOL1)} FROM ctstable3 +Timestampaddquarter_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_QUARTER,2,TSCOL1)} FROM ctstable3 +Timestampaddyear_Fn_Query=SELECT {FN TIMESTAMPADD(SQL_TSI_YEAR,2,TSCOL1)} FROM ctstable3 +Timestampdifffrac_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_FRAC_SECOND,TSCOL1,TSCOL2)} FROM ctstable3 +Timestampdiffsecond_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_SECOND,TSCOL1,TSCOL2)} FROM ctstable3 +Timestampdiffminute_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MINUTE,TSCOL1,TSCOL2)} FROM ctstable3 +Timestampdiffhour_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_HOUR,TSCOL1,TSCOL2)} FROM ctstable3 +Timestampdiffday_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_DAY,TSCOL1,TSCOL2)} FROM ctstable3 +Timestampdiffweek_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_WEEK,TSCOL1,TSCOL2)} FROM ctstable3 +Timestampdiffmonth_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_MONTH,TSCOL1,TSCOL2)} FROM ctstable3 +Timestampdiffquarter_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_QUARTER,TSCOL1,TSCOL2)} FROM ctstable3 +Timestampdiffyear_Fn_Query=SELECT {FN TIMESTAMPDIFF(SQL_TSI_YEAR,TSCOL1,TSCOL2)} FROM ctstable3 + + +#***************************************************************************** +#The SQL Statements which are used to test the Outer Joins using escape syntax +#***************************************************************************** +Left_Oj_Query=SELECT * FROM {OJ ctstable3 LEFT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL} +Right_Oj_Query=SELECT * FROM {OJ ctstable3 RIGHT OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL} +Full_Oj_Query=SELECT * FROM {OJ ctstable3 FULL OUTER JOIN ctstable4 ON ctstable3.NUMCOL=ctstable4.NUMCOL} + + +#***************************************************************************** +#The SQL Statements for creating, inserting and dropping the tables which are +#used in testing the scalar functions and outer joins using escape syntax +#***************************************************************************** + +Fnschema_Tab1_Insert=INSERT INTO ctstable3 VALUES ('Java',' HotJava ','JAVA',100,0.5,{d '1993-07-13'},{t '10:30:55'},{ts '1996-05-10 10:07:04'},{ts '1996-05-10 10:07:05'}) +Fnschema_Tab2_Insert=INSERT INTO ctstable4 VALUES ('STRING3',100) + +Fnschema_Tab1_Delete=delete from ctstable3 +Fnschema_Tab2_Delete=delete from ctstable4 + +#***************************************************************************** +#The SQL Statements which are used in TxBean (Session bean) +#***************************************************************************** +TxBean_insert1=insert into TxBean_Tab1 values(?, ?, ?) +TxBean_insert2=insert into TxBean_Tab2 values(?, ?, ?) + +TxBean_delete1=delete from TxBean_Tab1 where KEY_ID = ? +TxBean_delete2=delete from TxBean_Tab2 where KEY_ID = ? + +TxBean_update1=update TxBean_Tab1 set TABONE_NAME = ? where KEY_ID = ? +TxBean_update2=update TxBean_Tab2 set TABTWO_NAME = ? where KEY_ID = ? +TxBean_update3=update TxBean_Tab1 set PRICE = ? where KEY_ID = ? +TxBean_update4=update TxBean_Tab2 set PRICE = ? where KEY_ID = ? + +TxBean_query1=select * from TxBean_Tab1 +TxBean_query2=select * from TxBean_Tab2 +TxBean_query3=select KEY_ID, TABONE_NAME, PRICE from TxBean_Tab1 where KEY_ID = ? +TxBean_query4=select KEY_ID, TABTWO_NAME, PRICE from TxBean_Tab2 where KEY_ID = ? + + +TxBean_Tab1_Delete=delete from TxBean_Tab1 +TxBean_Tab2_Delete=delete from TxBean_Tab2 + +#***************************************************************************** +#The SQL Statements which are used in TxEBean (Entity bean) +#***************************************************************************** +TxEBean_updateString1=insert into TxEBean_Tab values(?, ?, ?) +TxEBean_updateString2=delete from TxEBean_Tab where KEY_ID = ? +TxEBean_updateString3=update TxEBean_Tab set BRAND_NAME = ?, PRICE = ? where KEY_ID = ? + +TxEBean_selectString1=select KEY_ID from TxEBean_Tab where KEY_ID = ? +TxEBean_selectString2=select KEY_ID from TxEBean_Tab where BRAND_NAME = ? +TxEBean_selectString3=select KEY_ID from TxEBean_Tab where PRICE = ? +TxEBean_selectString4=select KEY_ID, BRAND_NAME, PRICE from TxEBean_Tab where KEY_ID = ? +TxEBean_selectString5=select BRAND_NAME from TxEBean_Tab where KEY_ID = ? +TxEBean_selectString6=select PRICE from TxEBean_Tab where KEY_ID = ? + +TxEBean_queryStr1=select KEY_ID from TxEBean_Tab where KEY_ID = ? + +TxEBean_Delete=delete from TxEBean_Tab + +#***************************************************************************** +#The SQL Statements which are used in the integration/session and +#integration/entity tests +#***************************************************************************** +Integration_Tab_Delete=delete from Integration_Tab +Integration_Insert=insert into Integration_Tab values(?, ?) +Integration_Insert1=insert into Integration_Tab values(1000, 50000.0) +Integration_Insert2=insert into Integration_Tab values(1075, 10490.75) +Integration_Insert3=insert into Integration_Tab values(40, 200.50) +Integration_Insert4=insert into Integration_Tab values(30564, 25000.0) +Integration_Insert5=insert into Integration_Tab values(387, 1000000.0) +Integration_Select_Account=select * from Integration_Tab WHERE ACCOUNT = ? +Integration_Select_All=select * from Integration_Tab +Integration_Update_Account=update Integration_Tab set BALANCE = ? where ACCOUNT = ? +Integration_Delete_Account=delete from Integration_Tab where ACCOUNT = ? + +#***************************************************************************** +#The SQL Statements which are used in the integration/sec tests +#***************************************************************************** +Integration_Sec_Tab_Delete=delete from Integration_Sec_Tab +Integration_Sec_Tab_Insert=insert into Integration_Sec_Tab values(?, ?, ?) +Integration_Sec_Tab_Delete1=delete from Integration_Sec_Tab WHERE LOG_NO=? +Integration_Sec_Tab_Delete2=delete FROM Integration_Sec_Tab where LOG_NO=? and not ( LINE_NO = ? ) +Integration_Sec_Tab_Update=update Integration_Sec_Tab set MESSAGE= ? where LOG_NO = ? and LINE_NO = ? +Integration_Sec_Tab_Select1=select MESSAGE, LINE_NO from Integration_Sec_Tab where LOG_NO = ? and not( LINE_NO= ? ) order by LINE_NO +Integration_Sec_Tab_Select2=select MESSAGE FROM Integration_Sec_Tab where LOG_NO = ? and LINE_NO = ? +Integration_Sec_Tab_Select3=select MAX(LOG_NO) FROM Integration_Sec_Tab +Integration_Sec_Tab_Select4=select LOG_NO from Integration_Sec_Tab where MESSAGE = ? and LINE_NO = ? +Integration_Sec_Tab_Select5=select LINE_NO from Integration_Sec_Tab where LOG_NO = ? and LINE_NO= ? + + +#***************************************************************************** +#The SQL Statements which are used in DBSupport used by ejb/ee/bb tests +#***************************************************************************** +BB_Tab_Delete=delete from BB_Tab +BB_Insert1=insert into BB_Tab values(?, ?, ?) +BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ? +BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ? +BB_Select3=select KEY_ID from BB_Tab where PRICE = ? +BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ? +BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ? +BB_Select6=select PRICE from BB_Tab where KEY_ID = ? +BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ? +BB_Delete1=delete from BB_Tab where KEY_ID = ? + +#***************************************************************************** +#The SQL Statements which are used in DAO by ejb/ee/bb tests +#***************************************************************************** +COFFEE_BB_Tab_Delete=delete from BB_Tab +COFFEE_BB_Insert1=insert into BB_Tab values(?, ?, ?) +COFFEE_BB_Select1=select KEY_ID from BB_Tab where KEY_ID = ? +COFFEE_BB_Select2=select KEY_ID from BB_Tab where BRAND_NAME = ? +COFFEE_BB_Select3=select KEY_ID from BB_Tab where PRICE = ? +COFFEE_BB_Select4=select KEY_ID from BB_Tab where PRICE >= ? and PRICE <= ? +COFFEE_BB_Select5=select KEY_ID from BB_Tab where KEY_ID >= ? and KEY_ID <= ? +COFFEE_BB_Select6=select PRICE from BB_Tab where KEY_ID = ? +COFFEE_BB_Update1=update BB_Tab set PRICE = ? where KEY_ID = ? +COFFEE_BB_Delete1=delete from BB_Tab where KEY_ID = ? + +#***************************************************************************** +#The SQL Statements which are used in DBSupport in jta/ee/txpropagationtest +#***************************************************************************** +JTA_Tab1_Delete=delete from JTA_Tab1 +JTA_Tab2_Delete=delete from JTA_Tab2 + +JTA_Tab1_Insert=insert into JTA_Tab1 values(?, ?, ?) +JTA_Tab2_Insert=insert into JTA_Tab2 values(?, ?, ?) + +JTA_Delete1=delete from JTA_Tab1 where KEY_ID = ? +JTA_Delete2=delete from JTA_Tab2 where KEY_ID = ? + +JTA_Tab1_Update1=update JTA_Tab1 set COF_NAME = ? where KEY_ID = ? +JTA_Tab2_Update1=update JTA_Tab2 set CHOC_NAME = ? where KEY_ID = ? + +JTA_Tab1_Update2=update JTA_Tab1 set PRICE = ? where KEY_ID = ? +JTA_Tab2_Update2=update JTA_Tab2 set PRICE = ? where KEY_ID = ? + +JTA_Tab1_Select=select * from JTA_Tab1 +JTA_Tab2_Select=select * from JTA_Tab2 + +JTA_Tab1_Select1=select KEY_ID, COF_NAME, PRICE FROM JTA_Tab1 where KEY_ID = ? +JTA_Tab2_Select1=select KEY_ID, CHOC_NAME, PRICE FROM JTA_Tab2 where KEY_ID = ? + + +#***************************************************************************** +# SQL Statements used by deployment tests +# +# See /tests/assembly/util/dbsupport for more details +# +#***************************************************************************** + +# +# BMP table with Integer Primary Key +# +DEPLOY_intPKTable_Insert=insert into Deploy_Tab1 values(?, ?, ?) +DEPLOY_intPKTable_Select_PK=select KEY_ID from Deploy_Tab1 where KEY_ID = ? +DEPLOY_intPKTable_Select_Price=select PRICE from Deploy_Tab1 where KEY_ID = ? +DEPLOY_intPKTable_Update=update Deploy_Tab1 set PRICE = ? where KEY_ID = ? +DEPLOY_intPKTable_Delete=delete from Deploy_Tab1 where KEY_ID = ? +DEPLOY_intPKTable_Cleanup=delete from Deploy_Tab1 + +# +# BMP table with String Primary Key +# +DEPLOY_strPKTable_Insert=insert into Deploy_Tab2 values(?, ?, ?) +DEPLOY_strPKTable_Select_PK=select KEY_ID from Deploy_Tab2 where KEY_ID = ? +DEPLOY_strPKTable_Select_Price=select PRICE from Deploy_Tab2 where KEY_ID = ? +DEPLOY_strPKTable_Update=update Deploy_Tab2 set PRICE = ? where KEY_ID = ? +DEPLOY_strPKTable_Delete=delete from Deploy_Tab2 where KEY_ID = ? +DEPLOY_strPKTable_Cleanup=delete from Deploy_Tab2 + +# +# BMP table with Long Primary Key +# +DEPLOY_longPKTable_Insert=insert into Deploy_Tab3 values(?, ?, ?) +DEPLOY_longPKTable_Select_PK=select KEY_ID from Deploy_Tab3 where KEY_ID = ? +DEPLOY_longPKTable_Select_Price=select PRICE from Deploy_Tab3 where KEY_ID = ? +DEPLOY_longPKTable_Update=update Deploy_Tab3 set PRICE = ? where KEY_ID = ? +DEPLOY_longPKTable_Delete=delete from Deploy_Tab3 where KEY_ID = ? +DEPLOY_longPKTable_Cleanup=delete from Deploy_Tab3 + +# +# BMP table with Float Primary Key +# +DEPLOY_floatPKTable_Insert=insert into Deploy_Tab4 values(?, ?, ?) +DEPLOY_floatPKTable_Select_PK=select KEY_ID from Deploy_Tab4 where KEY_ID = ? +DEPLOY_floatPKTable_Select_Price=select PRICE from Deploy_Tab4 where KEY_ID = ? +DEPLOY_floatPKTable_Update=update Deploy_Tab4 set PRICE = ? where KEY_ID = ? +DEPLOY_floatPKTable_Delete=delete from Deploy_Tab4 where KEY_ID = ? +DEPLOY_floatPKTable_Cleanup=delete from Deploy_Tab4 + +# +# BMP table with Compound Primary Key +# +DEPLOY_compoundPKTable_Insert=insert into Deploy_Tab5 values(?, ?, ?, ?, ?) +DEPLOY_compoundPKTable_Select_PK=select KEY_ID1, KEY_ID2, KEY_ID3 from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ? +DEPLOY_compoundPKTable_Select_Price=select PRICE from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ? +DEPLOY_compoundPKTable_Update=update Deploy_Tab5 set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ? +DEPLOY_compoundPKTable_Delete=delete from Deploy_Tab5 where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ? +DEPLOY_compoundPKTable_Cleanup=delete from Deploy_Tab5 + +#***************************************************************************** +#The SQL Statements which are used in DBSupport2 used by secpropagation tests +#***************************************************************************** +SEC_Insert1=insert into SEC_Tab1 values(?, ?, ?) +SEC_Select1=select KEY_ID from SEC_Tab1 where KEY_ID = ? +SEC_Select2=select KEY_ID from SEC_Tab1 where BRAND = ? +SEC_Select3=select KEY_ID from SEC_Tab1 where PRICE = ? +SEC_Select4=select KEY_ID from SEC_Tab1 where PRICE >= ? and PRICE <= ? +SEC_Select5=select KEY_ID from SEC_Tab1 where KEY_ID >= ? and KEY_ID <= ? +SEC_Select6=select PRICE from SEC_Tab1 where KEY_ID = ? +SEC_Update1=update SEC_Tab1 set PRICE = ? where KEY_ID = ? +SEC_Delete1=delete from SEC_Tab1 where KEY_ID = ? +SEC_Tab1_Delete=delete from SEC_Tab1 + +#***************************************************************************** +# Connector tests in src/tests/connector +#***************************************************************************** +ConnectorTable_Insert=insert into Connector_Tab values(?, ?, ?) +ConnectorTable_Delete=delete from Connector_Tab + +#***************************************************************************** +# insert values EIS +#***************************************************************************** +TSEIS_insert_init=1 +TSEIS_insert1=2 +TSEIS_insert2=3 + +#***************************************************************************** +#The SQL Statements which are used in xa multires tests +#***************************************************************************** + +Xa_Tab1_Select=select * from Xa_Tab1 + +# insert values +Xa_Tab1_Insert=insert into Xa_Tab1 values(?, ?, ?) + +# delete using id +Xa_Tab1_Delete1=delete from Xa_Tab1 where col1 = ? + +Xa_Tab1_Delete=delete from Xa_Tab1 +Xa_Tab2_Delete=delete from Xa_Tab2 + +#initial insert +Xa_Tab1_insert_init=insert into Xa_Tab1 values (1, 'Table1 Line one ', '1.0' ) +Xa_Tab2_insert_init=insert into Xa_Tab2 values (1, 'Table2 Line one ', '2.0' ) + +#subsequent insert +Xa_Tab1_insert1=insert into Xa_Tab1 values (2, 'Table1 Line two ', '11.0' ) +Xa_Tab1_insert2=insert into Xa_Tab1 values (3, 'Table1 Line three ','111.0' ) + +Xa_Tab2_insert1=insert into Xa_Tab2 values (2, 'Table2 Line two ', '22.0' ) +Xa_Tab2_insert2=insert into Xa_Tab2 values (3, 'Table2 Line three ', '222.0' ) + +#get results + +Xa_Tab1_query=select col1 from Xa_Tab1 order by col1 +Xa_Tab2_query=select col1 from Xa_Tab2 order by col1 + + + +#***************************************************************************** +# Coffee DAO SQL statements +#***************************************************************************** + +# +# Standard Coffee DAO +# +COFFEE_insert=insert into Coffee_Table values(?, ?, ?) +COFFEE_select=select BRAND_NAME, PRICE from Coffee_Table where KEY_ID = ? +COFFEE_select_pk_by_name=select KEY_ID from Coffee_Table where BRAND_NAME = ? +COFFEE_select_pk_by_price=select KEY_ID from Coffee_Table where PRICE = ? +COFFEE_select_pk_by_price_range=select KEY_ID from Coffee_Table where PRICE >= ? and PRICE <= ? +COFFEE_select_pk_by_pk_range=select KEY_ID from Coffee_Table where KEY_ID >= ? and KEY_ID <= ? +COFFEE_select_price=select PRICE from Coffee_Table where KEY_ID = ? +COFFEE_update=update Coffee_Table set BRAND_NAME = ?, PRICE = ? where KEY_ID = ? +COFFEE_update_price=update Coffee_Table set PRICE = ? where KEY_ID = ? +COFFEE_delete=delete from Coffee_Table where KEY_ID = ? +COFFEE_delete_all=delete from Coffee_Table + + +# +# Coffee DAO variant with String Primary Key +# +COFFEE_STRING_PK_insert=insert into Coffee_StringPK_Table values(?, ?, ?) +COFFEE_STRING_PK_select=select KEY_ID from Coffee_StringPK_Table where KEY_ID = ? +COFFEE_STRING_PK_select_price=select PRICE from Coffee_StringPK_Table where KEY_ID = ? +COFFEE_STRING_PK_update_price=update Coffee_StringPK_Table set PRICE = ? where KEY_ID = ? +COFFEE_STRING_PK_delete=delete from Coffee_StringPK_Table where KEY_ID = ? +COFFEE_STRING_PK_delete_all=delete from Coffee_StringPK_Table + +# +# Coffee DAO variant with Long Primary Key +# +COFFEE_LONG_PK_insert=insert into Coffee_LongPK_Table values(?, ?, ?) +COFFEE_LONG_PK_select=select KEY_ID from Coffee_LongPK_Table where KEY_ID = ? +COFFEE_LONG_PK_select_price=select PRICE from Coffee_LongPK_Table where KEY_ID = ? +COFFEE_LONG_PK_update_price=update Coffee_LongPK_Table set PRICE = ? where KEY_ID = ? +COFFEE_LONG_PK_delete=delete from Coffee_LongPK_Table where KEY_ID = ? +COFFEE_LONG_PK_delete_all=delete from Coffee_LongPK_Table + +# +# Coffee DAO variant with Float Primary Key +# +COFFEE_FLOAT_PK_insert=insert into Coffee_FloatPK_Table values(?, ?, ?) +COFFEE_FLOAT_PK_select=select KEY_ID from Coffee_FloatPK_Table where KEY_ID = ? +COFFEE_FLOAT_PK_select_price=select PRICE from Coffee_FloatPK_Table where KEY_ID = ? +COFFEE_FLOAT_PK_update_price=update Coffee_FloatPK_Table set PRICE = ? where KEY_ID = ? +COFFEE_FLOAT_PK_delete=delete from Coffee_FloatPK_Table where KEY_ID = ? +COFFEE_FLOAT_PK_delete_all=delete from Coffee_FloatPK_Table + +# +# Coffee DAO variant with Compound Primary Key +# +COFFEE_COMPOUND_PK_insert=insert into Coffee_CompoundPK_Table values(?, ?, ?, ?, ?) +COFFEE_COMPOUND_PK_select=select KEY_ID1, KEY_ID2, KEY_ID3 from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ? +COFFEE_COMPOUND_PK_select_price=select PRICE from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ? +COFFEE_COMPOUND_PK_update_price=update Coffee_CompoundPK_Table set PRICE = ? where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ? +COFFEE_COMPOUND_PK_delete=delete from Coffee_CompoundPK_Table where KEY_ID1 = ? and KEY_ID2 = ? and KEY_ID3 = ? +COFFEE_COMPOUND_PK_delete_all=delete from Coffee_CompoundPK_Table + + +Simple_Select_Query= SELECT * FROM jstl_tab1 +Select_NoRows_Query= SELECT * FROM jstl_tab1 WHERE idNum = -9999 +Select_Jstl_Tab1_OneRow_Query= SELECT * FROM jstl_tab1 where idNum = 1 +Select_Jstl_Tab1_By_Id_Query= SELECT * FROM jstl_tab1 ORDER BY idNum +Select_Jstl_Tab1_Using_Param_Query= SELECT * FROM jstl_tab1 WHERE idNum = ? +Select_Jstl_Tab2_Using_Param_Query= SELECT idNum, lastName FROM jstl_tab2 WHERE idNum = ? + +Update_Jstl_Tab2_Using_Param_Query= UPDATE jstl_tab2 SET lastName= ? WHERE idNum = ? + +Delete_NoRows_Query= DELETE FROM jstl_tab2 WHERE idNum = -9999 +Delete_AllRows_Query= DELETE FROM jstl_tab2 + +Insert_Row_Query= INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (1, {d '1961-08-30'}, 'Clark', 'Kent', 1, 4.5) +Insert2_Row_Query= INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, {d '1980-12-30'}, 'Fred', 'Flinstone', 2, 4.5) +Insert3_Row_Query= INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (3, {d '1961-01-01'}, 'Scooby', 'Doo', 4, 4.5) +Insert4_Row_Query= INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (4, {d '1990-03-15'}, 'Bruce', 'Wayne', 3, 4.5) +Delete_Jstl_Tab2_Using_Param_Query=DELETE FROM jstl_tab2 where idNum = ? +Failed_Insert_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (2, '1992-02-03'}, NULL,NULL, 2, 4.5) +Select_Jstl_Tab2_AllRows_Query=SELECT * from jstl_tab2 +Invalid_SQL_Query=This Will Fail on Any RDBMS I Hope! +Select_Jstl_Tab1_MultiParam_Query=SELECT idNum, firstName, lastName from jstl_tab1 where idNum= ? and lastName = ? +Delete_Jstl_Tab2_MultiParam_Query=DELETE FROM jstl_tab2 where idNum = ? and lastName = ? +Select_Jstl_Tab3_Date_Query=SELECT * from jstl_tab3 where aDate= ? +Select_Jstl_Tab3_Time_Query=SELECT * from jstl_tab3 where aTime= ? +Select_Jstl_Tab3_Timestamp_Query=SELECT * from jstl_tab3 where aTimestamp= ? +Insert_Jstl_Tab3_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, {ts '2001-08-30 20:20:20'}) +Insert_Jstl_Tab3_Date_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, ?, {t '20:20:20'}, {ts '2001-08-30 20:20:20'}) +Insert_Jstl_Tab3_Time_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, ?, {ts '2001-08-30 20:20:20'}) +Insert_Jstl_Tab3_Timestamp_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(1, {d '2001-08-30'}, {t '20:20:20'}, ?) +Delete_Jstl_Tab3_AllRows_Query= DELETE FROM jstl_tab3 + +Insert_Jstl_Tab3_Null_Query=INSERT INTO jstl_tab3(idNum, aDate, aTime, aTimestamp) VALUES(99, null, null, null) +Select_Jstl_Tab2_NullParam_Query= SELECT * FROM jstl_tab2 WHERE rank = ? +Insert_Jstl_Tab2_Null_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, null) +Insert_Jstl_Tab2_NullParam_Query=INSERT INTO jstl_tab2(idNum, dob, firstName, lastName, rank, rating) VALUES (5, {d '1970-07-04'}, 'Peter', 'Parker', 5, ?) diff --git a/glassfish-runner/appclient-platform-tck/jakartaeetck/tmp/tstest.jte b/glassfish-runner/appclient-platform-tck/jakartaeetck/tmp/tstest.jte new file mode 100644 index 0000000000..a4a4dbea56 --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/jakartaeetck/tmp/tstest.jte @@ -0,0 +1,84 @@ +#Properties for test: testStateful +#Mon Oct 21 11:26:38 IST 2024 +harness.socket.retry.count=10 +logical.hostname.servlet=server +harness.temp.directory=${ts.home}/tmp +whitebox-anno_no_md=java\:comp/env/eis/whitebox-anno_no_md +porting.ts.HttpsURLConnection.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection +javamail.protocol=imap +whitebox-tx=java\:comp/env/eis/whitebox-tx +porting.ts.HttpsURLConnection.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIHttpsURLConnection +log.file.location=${vi.domain}/logs +password=j2ee +porting.ts.deploy.class.1=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeployment +porting.ts.deploy.class.2=com.sun.ts.lib.implementation.sun.javaee.glassfish.AutoDeploymentSeparateVM +db.supports.sequence=true +varbinarySize=48 +sigTestClasspath=${s1as.modules}/glassfish-corba-omgapi.jar${pathsep}${s1as.modules}/glassfish-corba-orb.jar${pathsep}${s1as.modules}/jakarta.enterprise.cdi-api.jar${pathsep}${s1as.modules}/jakarta.json-api.jar${pathsep}${s1as.modules}/jakarta.json.bind-api.jar${pathsep}${s1as.modules}/jakarta.batch-api.jar${pathsep}${s1as.modules}/jakarta.interceptor-api.jar${pathsep}${s1as.modules}/stax2-api.jar${pathsep}${s1as.modules}/jakarta.enterprise.concurrent-api.jar${pathsep}${s1as.modules}/jakarta.websocket-api.jar${pathsep}${s1as.modules}/jakarta.websocket-client-api.jar${pathsep}${s1as.modules}/jakarta.jms-api.jar${pathsep}${s1as.modules}/jakarta.faces.jar${pathsep}${s1as.modules}/jakarta.validation-api.jar${pathsep}${s1as.modules}/jakarta.annotation-api.jar${pathsep}${s1as.modules}/jakarta.xml.bind-api.jar${pathsep}${s1as.modules}/webservices-api-osgi.jar${pathsep}${pathsep}${s1as.modules}/jakarta.ws.rs-api.jar${pathsep}${s1as.modules}/weld-osgi-bundle.jar${pathsep}${s1as.modules}/jakarta.ejb-api.jar${pathsep}${s1as.modules}/jakarta.mail-api.jar${pathsep}${s1as.modules}/jakarta.persistence-api.jar${pathsep}${s1as.modules}/jakarta.resource-api.jar${pathsep}${s1as.modules}/jakarta.authorization-api.jar${pathsep}${s1as.modules}/jakarta.authentication-api.jar${pathsep}${s1as.modules}/jakarta.servlet-api.jar${pathsep}${s1as.modules}/jakarta.inject-api.jar${pathsep}${s1as.modules}/jakarta.el-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp-api.jar${pathsep}${s1as.modules}/jakarta.servlet.jsp.jstl-api.jar${pathsep}${jtaJarClasspath}${pathsep}${s1as.modules}/jakarta.security.enterprise-api.jar${pathsep}${s1as.modules}/jakarta.activation-api.jar${pathsep}${jimage.dir}/java.base${pathsep}${jimage.dir}/java.rmi${pathsep}${jimage.dir}/java.sql${pathsep}${jimage.dir}/java.naming +porting.ts.login.class.1=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext +porting.ts.login.class.2=com.sun.ts.lib.implementation.sun.javaee.GlassFishLoginContext +DriverManager=no +authuser=javajoe +jstl.db.user=${derby.user} +securedWebServicePort=1044 +binarySize=24 +whitebox-multianno=java\:comp/env/eis/whitebox-multianno +cofSize=5 +javamail.mailbox=test1 +finder=cts +authpassword=javajoe +work.dir=/home/jenkins/agent/workspace/jakartaee-tck_master/JTWork +variable.mapper=org.glassfish.expressly.lang.VariableMapperImpl +imap.port=1143 +ftable=ctstable2 +whitebox-xa=java\:comp/env/eis/whitebox-xa +whitebox-mdcomplete=java\:comp/env/eis/whitebox-mdcomplete +harness.log.delayseconds=0 +mailuser1=user01@james.local +harness.log.traceflag=true +transport_protocol=smtp +org.omg.CORBA.ORBClass=foo +javamail.root.path=mailboxes +whitebox-notx-param=java\:comp/env/eis/whitebox-notx-param +jms_timeout=10000 +test_classname=com.sun.ts.tests.appclient.deploy.ejbref.single.Client +rauser1=cts1 +whitebox-mixedmode=java\:comp/env/eis/whitebox-mixedmode +javamail.server=localhost +db.dml.file=derby/derby.dml.sql +java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory +Driver=DriverOnlyUsedIfDriverManagerIsYes +rauser2=cts2 +harness.log.port=2000 +ws_wait=5 +vehicle=none +whitebox-notx=java\:comp/env/eis/whitebox-notx +javamail.username=user01@james.local +smtp.port=1025 +jdbc.db=derby +iofile=MailIOFile.txt +porting.ts.url.class.2=com.sun.ts.lib.implementation.sun.common.SunRIURL +password1=cts1 +porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL +webServerPort=8080 +user1=cts1 +porting.ts.jms.class.2=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin +cofTypeSize=5 +platform.mode=jakartaEE +vehicle_archive_name=appclient_dep_ejbref_single +ts_home=/home/g/tck/platform-tck/glassfish-runner/appclient-platform-tck/jakartaeetck/ +whitebox-permissiondd=java\:comp/env/eis/whitebox-permissiondd +porting.ts.jms.class.1=com.sun.ts.lib.implementation.sun.javaee.SunRIJMSAdmin +whitebox-xa-param=java\:comp/env/eis/whitebox-xa-param +service_eetest.vehicles=none +javamail.password=1234 +jstl.db.password=${derby.passwd} +ptable=ctstable1 +rapassword2=cts2 +db1=db1OnlyUsedIfDriverManagerIsYes +whitebox-tx-param=java\:comp/env/eis/whitebox-tx-param +longvarbinarySize=50 +db2=db1OnlyUsedIfDriverManagerIsYes +user=j2ee +rapassword1=cts1 +webServerHost=localhost diff --git a/glassfish-runner/appclient-platform-tck/pom.xml b/glassfish-runner/appclient-platform-tck/pom.xml new file mode 100644 index 0000000000..0d4b0b58ba --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/pom.xml @@ -0,0 +1,572 @@ + + + + 4.0.0 + + org.glassfish + standalone-tck + 11.0.0-SNAPSHOT + ../pom.xml + + jakarta + glassfish.appclient-platform-tck + 11.0.0-SNAPSHOT + jar + + admin + /tmp/ripassword + ${admin.pass.file}.encoded + admin + 1.9.1.Final + 1.9.1.Final + ${glassfish.home}/glassfish/bin/asadmin + ${project.build.directory}/${glassfish.toplevel.dir}/glassfish/bin/asadmin + ${ri.home}/bin/imqbrokerd + ${ri.home}/bin/imqcmd + ${ri.home}/bin/imqobjmgr + ${ri.home}/bin/imqusermgr + ${project.build.directory}/glassfish7 + ${glassfish.home}/glassfish/lib + ${glassfish.home}/glassfish/modules + glassfish7 + + + 1234 + imap + + localhost + user01@james.local + java.naming.factory.initial=com.sun.jndi.fscontext.RefFSContextFactory + /tmp/ri_admin_objects + java.naming.provider.url=file:///${jndi.fs.dir} + mail/Session + + 5.9.1 + ${project.build.directory}/${glassfish.toplevel.dir}/mq + + jakarta.jms-tck + 11.0.0-SNAPSHOT + 3.1.0 + + + + + org.junit + junit-bom + ${junit.jupiter.version} + pom + import + + + + + + org.junit.jupiter + junit-jupiter + ${junit.jupiter.version} + + + jakarta.tck + common + ${project.version} + + + jakarta.tck + libutil + ${project.version} + + + jakarta.tck + runtime + ${project.version} + + + jakarta.tck + appclient + 11.0.0-SNAPSHOT + + + org.jboss.arquillian.container + arquillian-container-test-spi + ${arquillian.core.version} + + + org.jboss.arquillian.junit5 + arquillian-junit5-container + ${arquillian.core.version} + test + + + org.junit.vintage + junit-vintage-engine + test + + + jakarta.tck.arquillian + arquillian-protocol-appclient + ${project.version} + + + jakarta.tck.arquillian + arquillian-protocol-common + ${project.version} + + + jakarta.tck.arquillian + arquillian-protocol-javatest + ${project.version} + + + jakarta.tck.arquillian + arquillian-protocol-lib + ${project.version} + + + jakarta.tck.arquillian + tck-porting-lib + ${project.version} + + + org.omnifaces.arquillian + arquillian-glassfish-server-managed + 1.6 + test + + + org.jboss.arquillian + arquillian-bom + ${arquillian.junit} + pom + import + + + org.jboss.arquillian + arquillian-build + ${arquillian.junit} + pom + import + + + org.jboss.arquillian.container + arquillian-container-spi + ${arquillian.junit} + + + org.jboss.arquillian.container + arquillian-container-test-spi + ${arquillian.junit} + + + org.jboss.arquillian.core + arquillian-core-spi + ${arquillian.junit} + + + org.jboss.arquillian.test + arquillian-test-impl-base + ${arquillian.junit} + + + org.jboss.shrinkwrap + shrinkwrap-api + 1.2.6 + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.2.0 + + + 1-unpack + + unpack + + pre-integration-test + + + + org.glassfish.main.distributions + ${glassfish-artifact-id} + ${glassfish.container.version} + zip + true + ${project.build.directory} + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.2.0 + + + 1-unpack + + unpack + + pre-integration-test + + + + org.glassfish.main.distributions + ${glassfish-artifact-id} + ${glassfish.container.version} + zip + true + ${project.build.directory} + + + + + + 2-copy-lib + + copy + + pre-integration-test + + + + jakarta.tck.arquillian + arquillian-protocol-lib + true + ${glassfish.lib.dir} + arquillian-protocol-lib.jar + + + jakarta.tck + libutil + true + ${glassfish.lib.dir} + libutil.jar + + + jakarta.tck.arquillian + tck-porting-lib + true + ${glassfish.lib.dir} + tck-porting-lib.jar + + + jakarta.tck + runtime + true + ${glassfish.lib.dir} + runtime.jar + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.0.0 + + + 1-startbkr + + run + + pre-integration-test + + + + + + + + + + + + + + 2-init + + run + + pre-integration-test + + + + + + + + + + + + 3-encodeAdminPassword + + run + + pre-integration-test + + + + + + + + + + + + + 4-create.tck.users + + run + + pre-integration-test + + + + + + + + + + + + 5-create.tck.jms.objects + + run + + pre-integration-test + + + + + + + + + + + + + + + + + + + 6-list.tck.jms.objects + + run + + pre-integration-test + + + + + + + + + + + + + + org.codehaus.mojo + exec-maven-plugin + + + 1-stop-domain + + exec + + pre-integration-test + + ${exec.asadmin} + + stop-domain + + + + + 2-start-domain + + exec + + pre-integration-test + + ${exec.asadmin} + + start-domain + + + + + 91-create-mail-resource + + exec + + pre-integration-test + + ${exec.asadmin} + + create-mail-resource + --mailhost + ${mail.host} + --mailuser + ${mail.user} + --fromaddress + ${mail.from} + --property + mail.smtp.port=${smtp.port} + ${jndiName} + + + + + 92-create-jms-resource + + exec + + pre-integration-test + + ${exec.asadmin} + + create-jms-resource + --restype + jakarta.jms.QueueConnectionFactory + jms/QueueConnectionFactory + + + + + 93-create-jms-resource + + exec + + pre-integration-test + + ${exec.asadmin} + + create-jms-resource + --restype + jakarta.jms.TopicConnectionFactory + jms/TopicConnectionFactory + + + + + 93-list-jndi-resource + + exec + + pre-integration-test + + ${exec.asadmin} + + list-jndi-resources + + + + + 95-stop-domain + + exec + + pre-integration-test + + ${exec.asadmin} + + stop-domain + + + + + + + maven-failsafe-plugin + 3.0.0-M5 + + + mail-tests-appclient + + integration-test + verify + + + jakarta.tck:appclient + + **/ejblink/casesens/*.* + + + ${glassfish.module.dir}/angus-mail.jar + ${glassfish.module.dir}/jakarta.mail-api.jar + ${glassfish.module.dir}/mail-connector.jar + ${glassfish.module.dir}/mail-runtime.jar + ${glassfish.module.dir}/glassfish-naming.jar + ${glassfish.module.dir}/glassfish-api.jar + ${glassfish.module.dir}/jakarta.jms-api.jar + ${glassfish.module.dir}/glassfish-corba-omgapi.jar + ${glassfish.module.dir}/glassfish-corba-orb.jar + ${project.build.directory}/${glassfish.toplevel.dir}/javadb/lib/derbyclient.jar + ${project.build.directory}/${glassfish.toplevel.dir}/javadb/lib/derby.jar + ${project.build.directory}/${glassfish.toplevel.dir}/mq/lib/imq.jar + ${project.build.directory}/${glassfish.toplevel.dir}/mq/lib/jms.jar + ${project.build.directory}/${glassfish.toplevel.dir}/mq/lib/fscontext.jar + + + ${project.build.directory}/${glassfish.toplevel.dir} + ${env.TS_HOME} + ${project.basedir} + arquillian.xml + + + ${project.build.directory}/${glassfish.toplevel.dir} + + + + + + + + + + full + + true + + + glassfish + + + + web + + web + + + + diff --git a/glassfish-runner/appclient-platform-tck/src/main/resources/jndi.properties b/glassfish-runner/appclient-platform-tck/src/main/resources/jndi.properties new file mode 100644 index 0000000000..50c75accbc --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/src/main/resources/jndi.properties @@ -0,0 +1,28 @@ +# +# Copyright (c) 2013, 2018 Oracle and/or its affiliates. All rights reserved. +# +# This program and the accompanying materials are made available under the +# terms of the Eclipse Public License v. 2.0, which is available at +# http://www.eclipse.org/legal/epl-2.0. +# +# This Source Code may also be made available under the following Secondary +# Licenses when the conditions for such availability set forth in the +# Eclipse Public License v. 2.0 are satisfied: GNU General Public License, +# version 2 with the GNU Classpath Exception, which is available at +# https://www.gnu.org/software/classpath/license.html. +# +# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 +# + +# Properties for establishing initial JNDI Context. These properties +# are automatically read by JNDI during new InitialContext() as long +# as this file is in the search path. For JMS TCK the Open Message +# Queue uses the JNDI FileSystem Context Provider. +# +# If on a WINDOWS based system then the path below will need to contain +# the drive letter in the path. The path below is for UNIX based systems. +# So for WINDOWS platforms the (java.naming.provider.url) MUST BE: +# java.naming.provider.url=file:///C:/tmp/ri_admin_objects +# +java.naming.factory.initial=com.sun.jndi.fscontext.RefFSContextFactory +java.naming.provider.url=file:///tmp/ri_admin_objects diff --git a/glassfish-runner/appclient-platform-tck/src/main/resources/logging.properties b/glassfish-runner/appclient-platform-tck/src/main/resources/logging.properties new file mode 100644 index 0000000000..5139b6bf9d --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/src/main/resources/logging.properties @@ -0,0 +1,15 @@ +handlers=java.util.logging.FileHandler,java.util.logging.ConsoleHandler + +tck.jakarta.platform.ant.level = FINER +org.glassfish.appclient.client.level = FINER + +java.util.logging.FileHandler.pattern = tck-run.log +java.util.logging.FileHandler.level = FINEST +#java.util.logging.FileHandler.formatter = tck.conversion.log.TestLogFormatter +java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter +# date(1), source(2), logger(3), level(4), message(5), thrown(6) +java.util.logging.SimpleFormatter.format = [%1$tH:%tM:%1$tS.%1$tL] %2$.12s/%4$s %5$s %n + +# Limit the message that are printed on the console to INFO and above. +java.util.logging.ConsoleHandler.level = FINEST +java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter \ No newline at end of file diff --git a/glassfish-runner/appclient-platform-tck/src/test/java/arquillian/AppclientConfigTest.txt b/glassfish-runner/appclient-platform-tck/src/test/java/arquillian/AppclientConfigTest.txt new file mode 100644 index 0000000000..56fcdb2ec1 --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/src/test/java/arquillian/AppclientConfigTest.txt @@ -0,0 +1,34 @@ +package arquillian; + +import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor; +import org.jboss.arquillian.config.descriptor.api.ProtocolDef; +import org.jboss.arquillian.container.test.impl.MapObject; +import org.jboss.shrinkwrap.descriptor.api.Descriptors; +import org.junit.jupiter.api.Test; +import tck.arquillian.protocol.appclient.AppClientProtocolConfiguration; + +import java.io.InputStream; +import java.util.Arrays; +import java.util.Map; + +public class AppclientConfigTest { + @Test + public void testLoadAppclientConfig() throws Exception{ + System.out.println("AppclientConfigTest.testLoadAppclientConfig"); + InputStream input = AppclientConfigTest.class.getResource("/arquillian.xml").openStream(); + ArquillianDescriptor descriptor = Descriptors.importAs(ArquillianDescriptor.class) + .fromStream(input); + System.out.println("########################" +descriptor.getGroups().get(0)); + AppClientProtocolConfiguration config = new AppClientProtocolConfiguration(); + ProtocolDef appclientDef = descriptor.getGroups().get(0).getGroupContainers().get(0).getProtocols().get(0); + System.out.println(appclientDef); + Map props = appclientDef.getProtocolProperties(); + System.out.println(props); + MapObject.populate(config, props); + System.out.println(config.getClientCmdLineString()); + System.out.println("--- ENV array:"); + System.out.println(Arrays.asList(config.clientEnvAsArray())); + System.out.println("--- CMD array:"); + System.out.println(Arrays.asList(config.clientCmdLineAsArray())); + } +} diff --git a/glassfish-runner/appclient-platform-tck/src/test/java/arquillian/GlassfishTckExtension.java b/glassfish-runner/appclient-platform-tck/src/test/java/arquillian/GlassfishTckExtension.java new file mode 100644 index 0000000000..413555b96a --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/src/test/java/arquillian/GlassfishTckExtension.java @@ -0,0 +1,13 @@ +package arquillian; + +import org.jboss.arquillian.container.test.spi.client.deployment.ApplicationArchiveProcessor; +import org.jboss.arquillian.core.spi.LoadableExtension; +import org.jboss.arquillian.test.spi.enricher.resource.ResourceProvider; + +public class GlassfishTckExtension implements LoadableExtension { + @Override + public void register(ExtensionBuilder builder) { + builder.service(ResourceProvider.class, GlassfishXmlProcessor.class); + builder.observer(GlassfishXmlProcessor.class); + } +} \ No newline at end of file diff --git a/glassfish-runner/appclient-platform-tck/src/test/java/arquillian/GlassfishXmlProcessor.java b/glassfish-runner/appclient-platform-tck/src/test/java/arquillian/GlassfishXmlProcessor.java new file mode 100644 index 0000000000..0db6d11f0b --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/src/test/java/arquillian/GlassfishXmlProcessor.java @@ -0,0 +1,139 @@ +package arquillian; + +import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor; +import org.jboss.arquillian.config.descriptor.api.ExtensionDef; +import org.jboss.arquillian.core.api.annotation.Observes; +import org.jboss.shrinkwrap.api.Archive; +import org.jboss.shrinkwrap.api.container.ManifestContainer; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.jboss.shrinkwrap.api.spec.WebArchive; +import tck.arquillian.porting.lib.spi.AbstractTestArchiveProcessor; +import org.jboss.shrinkwrap.api.asset.StringAsset; + + +import java.io.File; +import java.io.IOException; +import java.net.URL; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Collections; +import java.util.HashSet; +import java.util.List; +import java.util.logging.Logger; + +public class GlassfishXmlProcessor extends AbstractTestArchiveProcessor { + static Logger log = Logger.getLogger(GlassfishXmlProcessor.class.getName()); + static HashSet sunXmlFiles = new HashSet(); + static { + sunXmlFiles.add("META-INF/sun-application-client.xml"); + sunXmlFiles.add("META-INF/sun-application.xml"); + sunXmlFiles.add("META-INF/sun-ra.xml"); + sunXmlFiles.add("WEB-INF/sun-web.xml"); + sunXmlFiles.add("META-INF/sun-ejb-jar.xml"); + } + + private Path descriptorDirRoot; + + /** + * Called on completion of the Arquillian configuration. + */ + public void initalize(@Observes ArquillianDescriptor descriptor) { + // Must call to setup the ResourceProvider + super.initalize(descriptor); + + // Get the descriptor path + ExtensionDef descriptorsDef = descriptor.extension("jboss-descriptors"); + String descriptorDir = descriptorsDef.getExtensionProperties().get("descriptorDir"); + if(descriptorDir == null) { + String msg = "Specify the descriptorDir property in arquillian.xml as extension:\n"+ + "\n" + + " path-to-descriptors-dir\n" + + ""; + //throw new IllegalStateException(msg); + } else { + this.descriptorDirRoot = Paths.get(descriptorDir); + if(!Files.exists(this.descriptorDirRoot)) { + //throw new RuntimeException("Descriptor directory does not exist: " + this.descriptorDirRoot); + } + } + } + + @Override + public void processClientArchive(JavaArchive clientArchive, Class testClass, URL sunXmlURL) { + String name = clientArchive.getName(); + addDescriptors(name, clientArchive, testClass); + } + + @Override + public void processWebArchive(WebArchive webArchive, Class testClass, URL sunXmlURL) { + String name = webArchive.getName(); + addDescriptors(name, webArchive, testClass); + } + + @Override + public void processRarArchive(JavaArchive warArchive, Class testClass, URL sunXmlURL) { + + } + + @Override + public void processParArchive(JavaArchive javaArchive, Class aClass, URL url) { + + } + + @Override + public void processEarArchive(EnterpriseArchive earArchive, Class testClass, URL sunXmlURL) { + String name = earArchive.getName(); + addDescriptors(name, earArchive, testClass); + } + + @Override + public void processEjbArchive(JavaArchive ejbArchive, Class testClass, URL sunXmlURL) { + String name = ejbArchive.getName(); + addDescriptors(name, ejbArchive, testClass); + } + + /** + * + * @param archiveName + * @param archive + * @param testClass + */ + protected void addDescriptors(String archiveName, ManifestContainer archive, Class testClass) { + /*String pkgName = testClass.getPackageName(); + Path pkgPath = Paths.get(pkgName.replace(".", "/")); + Path descriptorDir = descriptorDirRoot.resolve(pkgPath); + List files = findJBossDescriptors(descriptorDir); + for (File f : files) { + String name = f.getName(); + if(!name.startsWith(archiveName)) { + continue; + } + try { + URL url = f.toURL(); + // stateful_migration_threetwo_annotated.ear.jboss-deployment-structure.xml -> jboss-deployment-structure.xml + String descriptorName = name.replace(archiveName+".", ""); + if(archive instanceof WebArchive webArchive) { + webArchive.addAsWebInfResource(url, descriptorName); + } else { + + archive.addAsManifestResource(url, descriptorName); + } + } catch (IOException e) { + throw new RuntimeException(e); + } + }*/ + } + protected List findJBossDescriptors(Path pkgPath) { + try { + List files = Files.walk(pkgPath, 1) + .map(Path::toFile) + .filter(File::isFile) + .toList(); + return files; + } catch (Exception e) { + } + return Collections.emptyList(); + } +} diff --git a/glassfish-runner/appclient-platform-tck/src/test/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension b/glassfish-runner/appclient-platform-tck/src/test/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension new file mode 100644 index 0000000000..213f7f5aa9 --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/src/test/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension @@ -0,0 +1 @@ +arquillian.GlassfishTckExtension \ No newline at end of file diff --git a/glassfish-runner/appclient-platform-tck/src/test/resources/appclient-arquillian.xml b/glassfish-runner/appclient-platform-tck/src/test/resources/appclient-arquillian.xml new file mode 100644 index 0000000000..0c311e2a65 --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/src/test/resources/appclient-arquillian.xml @@ -0,0 +1,64 @@ + + + + + + true + true + target/appclient + true + + ${glassfish.home}/glassfish/bin/appclient \ + -Djdk.tls.client.enableSessionTicketExtension=false \ + -Djdk.tls.server.enableSessionTicketExtension=false \ + -Djava.security.policy=${glassfish.home}/glassfish/lib/appclient/client.policy \ + -Dcts.tmp=${ts.home}/tmp \ + -Djava.security.auth.login.config=${glassfish.home}/glassfish/lib/appclient/appclientlogin.conf \ + -Djava.protocol.handler.pkgs=javax.net.ssl \ + -Djavax.net.ssl.keyStore=${ts.home}/bin/certificates/clientcert.jks \ + -Djavax.net.ssl.keyStorePassword=changeit \ + -Djavax.net.ssl.trustStore=${glassfish.home}/glassfish/domains/domain1/config/cacerts.jks \ + -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl \ + -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl \ + -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl \ + -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser \ + -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter \ + -Doracle.jdbc.J2EE13Compliant=true \ + -Doracle.jdbc.mapDateToTimestamp \ + -Dstartup.login=false \ + -Dauth.gui=false \ + -Dlog.file.location=${glassfish.home}/glassfish/domains/domain1/logs \ + -Dri.log.file.location=${glassfish.home}/glassfish/domains/domain1/logs \ + -DwebServerHost.2=localhost \ + -DwebServerPort.2=8080 \ + -Ddeliverable.class=com.sun.ts.lib.deliverable.cts.CTSDeliverable \ + -jar \ + ${clientEarDir}/${clientAppArchive} + + \\ + + PATH=${env.PATH};LD_LIBRARY_PATH=${glassfish.home}/lib;AS_DEBUG=true; + APPCPATH=${glassfish.home}/glassfish/lib/arquillian-protocol-lib.jar:target/appclient/lib/arquillian-core.jar:target/appclient/lib/arquillian-junit5.jar:${glassfish.home}/glassfish/modules/security.jar + ${project.basedir} + ${ts.home}/tmp + ${ts.home}/bin/ts.jte + ${ts.home}/bin/tssql.stmt + true + 20000 + + + \ No newline at end of file diff --git a/glassfish-runner/appclient-platform-tck/src/test/resources/arquillian.xml b/glassfish-runner/appclient-platform-tck/src/test/resources/arquillian.xml new file mode 100644 index 0000000000..02ab1a7c68 --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/src/test/resources/arquillian.xml @@ -0,0 +1,32 @@ + + + + + + true + true + target/appclient + true + ${project.basedir} + ${ts.home}/tmp + ${ts.home}/bin/ts.jte + ${ts.home}/bin/tssql.stmt + true + 20000 + + + \ No newline at end of file diff --git a/glassfish-runner/appclient-platform-tck/src/test/resources/logging.properties b/glassfish-runner/appclient-platform-tck/src/test/resources/logging.properties new file mode 100644 index 0000000000..5139b6bf9d --- /dev/null +++ b/glassfish-runner/appclient-platform-tck/src/test/resources/logging.properties @@ -0,0 +1,15 @@ +handlers=java.util.logging.FileHandler,java.util.logging.ConsoleHandler + +tck.jakarta.platform.ant.level = FINER +org.glassfish.appclient.client.level = FINER + +java.util.logging.FileHandler.pattern = tck-run.log +java.util.logging.FileHandler.level = FINEST +#java.util.logging.FileHandler.formatter = tck.conversion.log.TestLogFormatter +java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter +# date(1), source(2), logger(3), level(4), message(5), thrown(6) +java.util.logging.SimpleFormatter.format = [%1$tH:%tM:%1$tS.%1$tL] %2$.12s/%4$s %5$s %n + +# Limit the message that are printed on the console to INFO and above. +java.util.logging.ConsoleHandler.level = FINEST +java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter \ No newline at end of file diff --git a/tcks/profiles/platform/appclient/pom.xml b/tcks/profiles/platform/appclient/pom.xml index 0ad82da935..3f57b8291b 100644 --- a/tcks/profiles/platform/appclient/pom.xml +++ b/tcks/profiles/platform/appclient/pom.xml @@ -33,6 +33,13 @@ APPCLIENT APPCLIENT + + 1.9.1.Final + 11.0.0-SNAPSHOT + 5.9.1 + 17 + + ${project.groupId} @@ -70,6 +77,84 @@ jakarta.persistence jakarta.persistence-api + + ${project.groupId} + libutil + ${jakarta.ee.version} + + + ${project.groupId} + common + ${jakarta.ee.version} + + + jakarta.ejb + jakarta.ejb-api + + + ${project.groupId}.arquillian + arquillian-protocol-common + ${arquillian.jakarta.tck.version} + + + ${project.groupId}.arquillian + arquillian-protocol-javatest + ${arquillian.jakarta.tck.version} + + + jakarta.mail + jakarta.mail-api + + + jakarta.activation + jakarta.activation-api + + + org.jboss.shrinkwrap + shrinkwrap-api + 1.2.6 + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-depchain + 3.1.4 + pom + + + org.jboss.arquillian.junit5 + arquillian-junit5-container + ${arquillian.junit} + + + org.jboss.arquillian.junit5 + arquillian-junit5-core + ${arquillian.junit} + + + jakarta.tck.arquillian + arquillian-protocol-appclient + ${arquillian.jakarta.tck.version} + + + jakarta.tck.arquillian + arquillian-protocol-javatest + ${arquillian.jakarta.tck.version} + + + jakarta.tck.arquillian + tck-porting-lib + ${arquillian.jakarta.tck.version} + + + + + org.junit.jupiter + junit-jupiter + + + org.junit.jupiter + junit-jupiter-engine + diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/compat9_10/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/compat9_10/Client.java index bb3b663d05..f83c788050 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/compat9_10/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/compat9_10/Client.java @@ -22,11 +22,16 @@ import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.lib.util.TestUtil; +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { private static final String prefix = "java:comp/env/ejb/"; @@ -48,7 +53,6 @@ public static void main(String[] args) { * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; */ public void setup(String[] args, Properties props) throws Exception { - try { this.props = props; nctx = new TSNamingContext(); @@ -76,6 +80,7 @@ public void setup(String[] args, Properties props) throws Exception { * Run the client and check we can call a business method on * the referenced bean at runtime. */ + @Test public void test910DD() throws Exception { TestBean bean = null; String beanName; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/casesens/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/casesens/Client.java index 494debeac0..697cd1386c 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/casesens/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/casesens/Client.java @@ -20,13 +20,37 @@ package com.sun.ts.tests.appclient.deploy.ejblink.casesens; +import java.io.File; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import javax.naming.Context; + +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.exporter.ZipExporter; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.lib.util.TestUtil; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; +import tck.arquillian.protocol.common.TargetVehicle; + + + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { private static final String prefix = "java:comp/env/ejb/"; @@ -50,6 +74,67 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + + @TargetsContainer("javatest") + @Deployment(testable = false) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejblink_casesens_client.jar"); + ejbClient.addPackages(true, Client.class.getPackage()); + ejbClient.addPackages(true, "com.sun.ts.lib.harness"); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/casesens/appclient_dep_ejblink_casesens_client.xml"); + if (appClientUrl != null) { + ejbClient.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + URL sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/casesens/appclient_dep_ejblink_casesens_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + ejbClient.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.ejblink.casesens.Client" + "\n"), + "MANIFEST.MF"); + + + System.out.println(ejbClient.toString(true)); + JavaArchive ejb = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejblink_casesens_ejb.jar"); + ejb.addClasses(CaseBean.class, CaseBeanEJB.class); + ejb.addPackages(true, "com.sun.ts.tests.assembly.util.shared.ejbref.common"); + ejb.addPackages(true, "com.sun.ts.tests.common.ejb.wrappers"); + + URL resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/casesens/appclient_dep_ejblink_casesens_ejb.jar.sun-ejb-jar.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "sun-ejb-jar.xml"); + } + + resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/casesens/appclient_dep_ejblink_casesens_ejb.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "ejb-jar.xml"); + } + + System.out.println("##################################"); + + System.out.println(ejb.toString(true)); + + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_ejblink_casesens.ear"); + ear.addAsModule(ejbClient); + ear.addAsModule(ejb); + ear.as(ZipExporter.class).exportTo( + new File("/tmp/ejb.ear"), true); + + return ear; + }; /* * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -58,16 +143,15 @@ public static void main(String[] args) { * @class.testArgs: -ap tssql.stmt * */ - public void setup(String[] args, Properties props) throws Exception { - this.props = props; - - try { - nctx = new TSNamingContext(); - logMsg("[Client] Setup succeed (got naming context)."); - } catch (Exception e) { - throw new Exception("[Client] Setup failed:", e); - } - } + public void setup(String[] args, Properties props) throws Exception { + this.props = props; + try { + nctx = new TSNamingContext(); + logMsg("[Client] Setup succeed (got naming context)."); + } catch (Exception e) { + throw new Exception("[Client] Setup failed:", e); + } + } /** * @testName: testCaseSensitivity @@ -85,13 +169,14 @@ public void setup(String[] args, Properties props) throws Exception { * match the references specified in the DD (validates that * the EJB references were resolved correctly). */ + @Test public void testCaseSensitivity() throws Exception { CaseBean bean1 = null; CaseBean bean2 = null; String bean1Name; String bean2Name; boolean pass = false; - + try { TestUtil.logTrace("[Client] Looking up '" + bean1Lookup + "'..."); bean1 = (CaseBean) nctx.lookup(bean1Lookup, CaseBean.class); diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/path/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/path/Client.java index ccb6397b4f..4a78f77822 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/path/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/path/Client.java @@ -20,13 +20,32 @@ package com.sun.ts.tests.appclient.deploy.ejblink.path; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.lib.util.TestUtil; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + + + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { private static final String prefix = "java:comp/env/ejb/"; @@ -50,6 +69,87 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = false) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + + EnterpriseArchive ear = null; + try { + JavaArchive ejbClient = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejblink_path_client.jar"); + ejbClient.addPackages(true, "com.sun.ts.tests.appclient.deploy.ejblink.path"); + ejbClient.addPackages(true, "com.sun.ts.lib.harness"); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/casesens/appclient_dep_ejblink_path_client.xml"); + if (appClientUrl != null) { + ejbClient.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + URL sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/casesens/appclient_dep_ejblink_path_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + ejbClient.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.ejblink.path.Client" + "\n"), + "MANIFEST.MF"); + + + JavaArchive ejb1 = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejblink_path_jar1_ejb.jar"); + ejb1.addPackages(true, Client.class.getPackage()); + ejb1.addPackages(true, "com.sun.ts.tests.common.ejb.wrappers"); + + URL resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/path/appclient_dep_ejblink_path_jar1_ejb.jar.sun-ejb-jar.xml"); + + if (resURL != null) { + ejb1.addAsManifestResource(resURL, "sun-ejb-jar.xml"); + } + + resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/path/appclient_dep_ejblink_path_jar1_ejb.xml"); + + if (resURL != null) { + ejb1.addAsManifestResource(resURL, "ejb-jar.xml"); + } + + + + JavaArchive ejb2 = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejblink_path_jar2_ejb.jar"); + ejb2.addPackages(true, Client.class.getPackage()); + ejb2.addPackages(true, "com.sun.ts.tests.common.ejb.wrappers"); + + resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/path/appclient_dep_ejblink_path_jar2_ejb.jar.sun-ejb-jar.xml"); + + if (resURL != null) { + ejb2.addAsManifestResource(resURL, "sun-ejb-jar.xml"); + } + + resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/path/appclient_dep_ejblink_path_jar2_ejb.xml"); + + if (resURL != null) { + ejb2.addAsManifestResource(resURL, "ejb-jar.xml"); + } + + + ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_ejblink_path.ear"); + ear.addAsModule(ejbClient); + ear.addAsModule(ejb1); + ear.addAsModule(ejb2); + }catch(Exception e) { + e.printStackTrace(); + } + return ear; + }; + /* * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -58,16 +158,15 @@ public static void main(String[] args) { * @class.testArgs: -ap tssql.stmt * */ - public void setup(String[] args, Properties props) throws Exception { - this.props = props; - - try { - nctx = new TSNamingContext(); - logMsg("[Client] Setup succeed (got naming context)."); - } catch (Exception e) { - throw new Exception("Setup failed:", e); - } - } + public void setup(String[] args, Properties props) throws Exception { + this.props = props; + try { + nctx = new TSNamingContext(); + logMsg("[Client] Setup succeed (got naming context)."); + } catch (Exception e) { + throw new Exception("Setup failed:", e); + } + } /** * @testName: testScope @@ -87,6 +186,7 @@ public void setup(String[] args, Properties props) throws Exception { * identities (as reported by the String env. entry) match the * ones specified in the DD. */ + @Test public void testScope() throws Exception { ReferencedBean bean1 = null; ReferencedBean2 bean2 = null; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/single/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/single/Client.java index e1b4578d61..5a473bdb0e 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/single/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejblink/single/Client.java @@ -20,14 +20,35 @@ package com.sun.ts.tests.appclient.deploy.ejblink.single; +import java.io.IOException; +import java.net.URL; +import java.util.Hashtable; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import javax.naming.Context; + +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; -import com.sun.ts.lib.util.TestUtil; import com.sun.ts.tests.assembly.util.shared.ejbref.single.TestCode; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { /* @@ -36,6 +57,69 @@ public class Client extends EETest { private TSNamingContext nctx = null; private Properties props = null; + + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = false) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejblink_single_client.jar"); + ejbClient.addClass(Client.class); + ejbClient.addPackages(true, Client.class.getPackage()); + ejbClient.addPackages(true, "com.sun.ts.lib.harness"); + ejbClient.addPackages(true, "com.sun.ts.tests.assembly.util.refbean"); + ejbClient.addPackages(true, "com.sun.ts.tests.assembly.util.shared"); + ejbClient.addPackages(true, "com.sun.ts.tests.common.dao.coffee"); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/single/appclient_dep_ejblink_singe_client.xml"); + if (appClientUrl != null) { + ejbClient.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + URL sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/single/appclient_dep_ejblink_single_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + ejbClient.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.ejblink.single.Client" + "\n"), + "MANIFEST.MF"); + + + JavaArchive ejb = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejblink_single_ejb.jar"); + ejb.addPackages(true, "com.sun.ts.tests.assembly.util.shared.ejbref.common"); + ejb.addPackages(true, "com.sun.ts.tests.assembly.util.refbean"); + ejb.addPackages(true, "com.sun.ts.tests.assembly.util.shared"); + ejb.addPackages(true, "com.sun.ts.tests.common.dao.coffee"); + + + + + URL resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/single/appclient_dep_ejblink_single_ejb.jar.sun-ejb-jar.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "sun-ejb-jar.xml"); + } + + resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejblink/single/appclient_dep_ejblink_single_ejb.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "ejb-jar.xml"); + } + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_ejblink_single.ear"); + ear.addAsModule(ejbClient); + ear.addAsModule(ejb); + return ear; + }; + public static void main(String[] args) { Client theTests = new Client(); @@ -60,6 +144,7 @@ public void setup(String[] args, Properties props) throws Exception { logMsg("[Client] Setup succeed (got naming context)."); } catch (Exception e) { + e.printStackTrace(); throw new Exception("Setup failed:", e); } } @@ -77,9 +162,10 @@ public void setup(String[] args, Properties props) throws Exception { * that the EJB reference was resolved consistently with the * DD. */ + @Test public void testStateless() throws Exception { boolean pass; - + try { pass = TestCode.testStatelessExternal(nctx, props); if (!pass) { @@ -102,6 +188,7 @@ public void testStateless() throws Exception { * found only in this particular bean: This is to check that * the EJB reference was resolved consistently with the DD. */ + @Test public void testStateful() throws Exception { boolean pass; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/casesens/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/casesens/Client.java index 25dd32fd84..f50ef97406 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/casesens/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/casesens/Client.java @@ -20,13 +20,30 @@ package com.sun.ts.tests.appclient.deploy.ejbref.casesens; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.lib.util.TestUtil; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { private static final String prefix = "java:comp/env/ejb/"; @@ -50,6 +67,61 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = true) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejbref_casesens_client.jar"); + ejbClient.addPackages(true, Client.class.getPackage()); + ejbClient.addPackages(true, "com.sun.ts.lib.harness"); + + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "com/sun/ts/tests/appclient/deploy/ejbref/scope/appclient_dep_ejbref_casesens_client.xml"); + if (appClientUrl != null) { + ejbClient.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + URL sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/single/appclient_dep_ejbref_casesens_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + ejbClient.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.ejbref.casesens.Client" + "\n"), + "MANIFEST.MF"); + + JavaArchive ejb = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejbref_casesens_ejb.jar"); + ejb.addPackages(false, "com.sun.ts.tests.assembly.util.refbean"); + ejb.addPackages(false, "com.sun.ts.tests.assembly.util.shared.ejbref.common"); + ejb.addPackages(true, Client.class.getPackage()); + + + URL resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/scope/appclient_dep_ejbref_casesens_ejb.jar.sun-ejb-jar.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "sun-ejb-jar.xml"); + } + + resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/scope/appclient_dep_ejbref_casesens_ejb.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "ejb-jar.xml"); + } + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_ejbref_scope.ear"); + ear.addAsModule(ejbClient); + ear.addAsModule(ejb); + return ear; + }; + /** * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -84,6 +156,7 @@ public void setup(String[] args, Properties props) throws Exception { * are distinct and match the ones specified in the DD * (validates that the EJB reference are resolved correctly). */ + @Test public void testCaseSensitivity() throws Exception { ReferencedBean bean1 = null; ReferencedBean bean2 = null; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/scope/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/scope/Client.java index 7fa4796223..f0ea188696 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/scope/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/scope/Client.java @@ -20,13 +20,31 @@ package com.sun.ts.tests.appclient.deploy.ejbref.scope; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.lib.util.TestUtil; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { private static final String prefix = "java:comp/env/ejb/"; @@ -46,6 +64,86 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = true) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient1 = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejbref_scope_client.jar"); + ejbClient1.addPackages(true, Client.class.getPackage()); + ejbClient1.addPackages(true, "com.sun.ts.lib.harness"); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "com/sun/ts/tests/appclient/deploy/ejbref/scope/appclient_dep_ejbref_scope_client.xml"); + if (appClientUrl != null) { + ejbClient1.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + URL sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/single/appclient_dep_ejbref_scope_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient1.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + ejbClient1.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.ejbref.scope.Client" + "\n"), + "MANIFEST.MF"); + + + JavaArchive ejbClient2 = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejbref_scope_client_another.jar"); + ejbClient2.addPackages(true, Client.class.getPackage()); + ejbClient2.addPackages(true, "com.sun.ts.lib.harness"); + + // The appclient-client descriptor + appClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/scope/appclient_dep_ejbref_scope_another_client.xml"); + if (appClientUrl != null) { + ejbClient2.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/scope/appclient_dep_ejbref_scope_another_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient2.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + ejbClient2.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.ejbref.scope.Client" + "\n"), + "MANIFEST.MF"); + + + JavaArchive ejb = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejbref_scope_ejb.jar"); + ejb.addPackages(false, "com.sun.ts.tests.assembly.util.refbean"); + ejb.addPackages(false, "com.sun.ts.tests.assembly.util.shared.ejbref.common"); + ejb.addPackages(true, "com.sun.ts.tests.common.dao.coffee"); + ejb.addPackages(true, "com.sun.ts.tests.common.ejb.wrappers"); + ejb.addClasses(ReferencedBean.class, ReferencedBeanEJB.class); + + URL resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/scope/appclient_dep_ejbref_scope_ejb.jar.sun-ejb-jar.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "sun-ejb-jar.xml"); + } + + resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/scope/appclient_dep_ejbref_scope_ejb.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "ejb-jar.xml"); + } + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_ejbref_scope.ear"); + ear.addAsModule(ejbClient1); + ear.addAsModule(ejbClient2); + ear.addAsModule(ejb); + return ear; + }; + /* * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -54,16 +152,16 @@ public static void main(String[] args) { * @class.testArgs: -ap tssql.stmt * */ - public void setup(String[] args, Properties props) throws Exception { - this.props = props; + public void setup(String[] args, Properties props) throws Exception { + this.props = props; - try { - nctx = new TSNamingContext(); - logMsg("[Client] Setup succeed (got naming context)."); - } catch (Exception e) { - throw new Exception("Setup failed:", e); - } - } + try { + nctx = new TSNamingContext(); + logMsg("[Client] Setup succeed (got naming context)."); + } catch (Exception e) { + throw new Exception("Setup failed:", e); + } + } /** * @testName: testScope @@ -90,6 +188,7 @@ public void setup(String[] args, Properties props) throws Exception { * the application client DD (validates that this EJB * reference is resolved correctly). */ + @Test public void testScope() throws Exception { ReferencedBean bean = null; String beanName; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/single/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/single/Client.java index b1e12ea6e5..97ea106eef 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/single/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/ejbref/single/Client.java @@ -20,14 +20,32 @@ package com.sun.ts.tests.appclient.deploy.ejbref.single; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; -import com.sun.ts.lib.util.TestUtil; import com.sun.ts.tests.assembly.util.shared.ejbref.single.TestCode; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { /* @@ -42,6 +60,63 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = true) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejbref_single_client.jar"); + ejbClient.addClasses(Client.class, TestCode.class); + ejbClient.addPackages(true, "com.sun.ts.lib.harness"); + ejbClient.addPackages(true, "com.sun.ts.tests.assembly.util.refbean"); + ejbClient.addPackages(true, "com.sun.ts.tests.common.dao.coffee"); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "com/sun/ts/tests/appclient/deploy/ejbref/single/appclient_dep_ejbref_single_client.xml"); + if (appClientUrl != null) { + ejbClient.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + URL sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/single/appclient_dep_ejbref_single_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + + ejbClient.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.ejbref.single.Client" + "\n"), + "MANIFEST.MF"); + + JavaArchive ejb = ShrinkWrap.create(JavaArchive.class, "appclient_dep_ejbref_single_ejb.jar"); + ejb.addPackages(false, "com.sun.ts.tests.assembly.util.refbean"); + ejb.addPackages(true, "com.sun.ts.tests.common.dao.coffee"); + ejb.addPackages(true, "/com.sun.ts.tests.common.ejb.wrappers"); + + URL resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/single/appclient_dep_ejbref_single_ejb.jar.sun-ejb-jar.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "sun-ejb-jar.xml"); + } + + resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/ejbref/single/appclient_dep_ejbref_single_ejb.xml"); + + if (resURL != null) { + ejb.addAsManifestResource(resURL, "ejb-jar.xml"); + } + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_ejbref_single.ear"); + ear.addAsModule(ejbClient); + ear.addAsModule(ejb); + return ear; + }; + /* * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -77,6 +152,7 @@ public void setup(String[] args, Properties props) throws Exception { * that the EJB reference was resolved consistently with the * DD. */ + @Test public void testStateless() throws Exception { boolean pass; @@ -102,6 +178,7 @@ public void testStateless() throws Exception { * found only this particular bean: This is to check that the * EJB reference was resolved consistently with the DD. */ + @Test public void testStateful() throws Exception { boolean pass; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/casesens/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/casesens/Client.java index b7193485d8..a97cd9e2f5 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/casesens/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/casesens/Client.java @@ -20,13 +20,30 @@ package com.sun.ts.tests.appclient.deploy.enventry.casesens; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.tests.assembly.util.shared.enventry.casesens.TestCode; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { private TSNamingContext nctx = null; @@ -38,6 +55,35 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = false) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient = ShrinkWrap.create(JavaArchive.class, "appclient_dep_enventry_casesens_client.jar"); + ejbClient.addClasses(Client.class, TestCode.class); + ejbClient.addPackages(true, "com.sun.ts.lib.harness"); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/enventry/casesens/appclient_dep_enventry_casesens_client.xml"); + if (appClientUrl != null) { + ejbClient.addAsManifestResource(appClientUrl, "application-client.xml"); + } + + ejbClient.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.enventry.casesens.Client" + "\n"), + "MANIFEST.MF"); + + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_enventry_casesens.ear"); + ear.addAsModule(ejbClient); + return ear; + }; + /* * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -65,6 +111,7 @@ public void setup(String[] args, Properties props) throws Exception { * environment entries. Check that their runtime values are * distinct and match the ones specified in the DD. */ + @Test public void testCaseSensitivity() throws Exception { boolean pass; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/scope/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/scope/Client.java index 3d4cf671c0..3dfa989538 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/scope/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/scope/Client.java @@ -20,13 +20,31 @@ package com.sun.ts.tests.appclient.deploy.enventry.scope; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.tests.assembly.util.shared.enventry.scope.TestCode; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { /** Env. entry name for JNDI lookup */ @@ -44,6 +62,52 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = false) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient1 = ShrinkWrap.create(JavaArchive.class, "appclient_dep_enventry_scope_another_client.jar"); + ejbClient1.addClasses(Client.class, TestCode.class); + ejbClient1.addPackages(true, "com.sun.ts.lib.harness"); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "com/sun/ts/tests/appclient/deploy/enventry/scope/appclient_dep_enventry_scope_another_client.xml"); + if (appClientUrl != null) { + ejbClient1.addAsManifestResource(appClientUrl, "application-client.xml"); + } + + ejbClient1.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.enventry.scope.Client" + "\n"), + "MANIFEST.MF"); + + + JavaArchive ejbClient2 = ShrinkWrap.create(JavaArchive.class, "appclient_dep_enventry_scope_client.jar"); + ejbClient2.addClasses(Client.class, TestCode.class); + ejbClient2.addPackages(true, "com.sun.ts.lib.harness"); + + URL resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/enventry/scope/appclient_dep_enventry_scope_client.xml"); + + if (resURL != null) { + ejbClient2.addAsManifestResource(resURL, "application-client.xml"); + } + + ejbClient2.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.enventry.scope.Client" + "\n"), + "MANIFEST.MF"); + + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_enventry_scope.ear"); + ear.addAsModule(ejbClient1); + ear.addAsModule(ejbClient2); + return ear; + }; + /* * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -76,6 +140,7 @@ public void setup(String[] args, Properties props) throws Exception { * entry correspond to the one declared in the Deployment * Descriptor. */ + @Test public void testScope() throws Exception { boolean pass; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/single/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/single/Client.java index 39c80605d2..e40336353b 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/single/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/enventry/single/Client.java @@ -20,13 +20,30 @@ package com.sun.ts.tests.appclient.deploy.enventry.single; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.tests.assembly.util.shared.enventry.single.TestCode; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { private TSNamingContext nctx = null; @@ -38,6 +55,36 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = false) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient = ShrinkWrap.create(JavaArchive.class, "appclient_dep_enventry_single_client.jar"); + ejbClient.addPackages(true, Client.class.getPackage()); + ejbClient.addClasses(Client.class, TestCode.class); + ejbClient.addPackages(true, "com.sun.ts.lib.harness"); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/enventry/single/appclient_dep_enventry_single_client.xml"); + if (appClientUrl != null) { + ejbClient.addAsManifestResource(appClientUrl, "application-client.xml"); + } + + ejbClient.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.enventry.single.Client" + "\n"), + "MANIFEST.MF"); + + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_enventry_single.ear"); + ear.addAsModule(ejbClient); + return ear; + }; + /* * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -64,6 +111,7 @@ public void setup(String[] args, Properties props) throws Exception { * its runtime value match the DD value. * */ + @Test public void testString() throws Exception { boolean pass; @@ -87,6 +135,7 @@ public void testString() throws Exception { * its runtime value match the DD value. * */ + @Test public void testBoolean() throws Exception { boolean pass; @@ -110,6 +159,7 @@ public void testBoolean() throws Exception { * its runtime value match the DD value. * */ + @Test public void testByte() throws Exception { boolean pass; @@ -133,6 +183,7 @@ public void testByte() throws Exception { * its runtime value match the DD value. * */ + @Test public void testShort() throws Exception { boolean pass; @@ -156,6 +207,7 @@ public void testShort() throws Exception { * its runtime value match the DD value. * */ + @Test public void testInteger() throws Exception { boolean pass; @@ -179,6 +231,7 @@ public void testInteger() throws Exception { * its runtime value match the DD value. * */ + @Test public void testLong() throws Exception { boolean pass; @@ -202,6 +255,7 @@ public void testLong() throws Exception { * its runtime value match the DD value. * */ + @Test public void testFloat() throws Exception { boolean pass; @@ -225,6 +279,7 @@ public void testFloat() throws Exception { * its runtime value match the DD value. * */ + @Test public void testDouble() throws Exception { boolean pass; Double value; @@ -249,6 +304,7 @@ public void testDouble() throws Exception { * check that their runtime value match their DD value. * */ + @Test public void testAll() throws Exception { try { logTrace("[Client] testAll() : starting..."); diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/casesens/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/casesens/Client.java index dac9a6cde8..3413ecc395 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/casesens/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/casesens/Client.java @@ -20,14 +20,32 @@ package com.sun.ts.tests.appclient.deploy.resref.casesens; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.lib.util.TestUtil; import com.sun.ts.tests.assembly.util.shared.resref.casesens.TestCode; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { private Properties props = null; @@ -39,6 +57,40 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = false) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient = ShrinkWrap.create(JavaArchive.class, "appclient_dep_resref_casesens_client.jar"); + ejbClient.addClasses(Client.class, TestCode.class); + ejbClient.addPackages(true, "com.sun.ts.lib.harness"); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/resref/casesens/appclient_dep_resref_casesens_client.xml"); + if (appClientUrl != null) { + ejbClient.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + URL sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/resref/casesens/appclient_dep_resref_casesens_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + ejbClient.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.resref.casesens.Client" + "\n"), + "MANIFEST.MF"); + + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_resref_casesens.ear"); + ear.addAsModule(ejbClient); + return ear; + }; + /** * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -71,6 +123,7 @@ public void setup(String[] args, Properties props) throws Exception { * This validates that the resource references were resolved * correctly. */ + @Test public void testCaseSensitivity() throws Exception { boolean pass; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/scope/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/scope/Client.java index 04508d859c..1b61f4274f 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/scope/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/scope/Client.java @@ -20,13 +20,31 @@ package com.sun.ts.tests.appclient.deploy.resref.scope; +import java.io.IOException; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.StringAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; + import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.tests.assembly.util.shared.resref.scope.QueueCode; +import com.sun.ts.tests.assembly.util.shared.resref.scope.TopicCode; + +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { private TSNamingContext nctx = null; @@ -38,6 +56,65 @@ public static void main(String[] args) { Status s = theTests.run(args, System.out, System.err); s.exit(); } + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + + @Deployment(testable = false) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + JavaArchive ejbClient1 = ShrinkWrap.create(JavaArchive.class, "appclient_dep_resref_scope_another_client.jar"); + ejbClient1.addPackages(true, Client.class.getPackage()); + ejbClient1.addPackages(true, "com.sun.ts.lib.harness"); + ejbClient1.addClasses(Client.class, QueueCode.class, TopicCode.class); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "com/sun/ts/tests/appclient/deploy/resref/scope/appclient_dep_resref_scope_another_client.xml"); + if (appClientUrl != null) { + ejbClient1.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + URL sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/resref/scope/appclient_dep_resref_scope_another_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient1.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + ejbClient1.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.resref.scope.Client" + "\n"), + "MANIFEST.MF"); + + + JavaArchive ejbClient2 = ShrinkWrap.create(JavaArchive.class, "appclient_dep_resref_scope_client.jar"); + ejbClient2.addPackages(true, "com.sun.ts.lib.harness"); + ejbClient2.addClasses(Client.class, QueueCode.class); + + URL resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/resref/scope/appclient_dep_resref_scope_client.xml"); + + if (resURL != null) { + ejbClient2.addAsManifestResource(resURL, "ejb-jar.xml"); + } + + resURL = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/resref/scope/appclient_dep_resref_scope_client.jar.sun-application-client.xml"); + + if (resURL != null) { + ejbClient2.addAsManifestResource(resURL, "sun-ejb-jar.xml"); + } + + ejbClient2.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.resref.scope.Client" + "\n"), + "MANIFEST.MF"); + + + EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_resref_scope.ear"); + ear.addAsModule(ejbClient1); + ear.addAsModule(ejbClient2); + return ear; + }; + /* * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; @@ -78,6 +155,7 @@ public void setup(String[] args, Properties props) throws Exception { * manager connection factories reference. * */ + @Test public void testScope() throws Exception { boolean pass; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/scope/TopicClient.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/scope/TopicClient.java index 5d7b4d91eb..edc3132a12 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/scope/TopicClient.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/scope/TopicClient.java @@ -22,8 +22,8 @@ import java.util.Properties; -import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.tests.assembly.util.shared.resref.scope.TopicCode; diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/single/Client.java b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/single/Client.java index 61a187188d..a16d818881 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/single/Client.java +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/single/Client.java @@ -20,168 +20,248 @@ package com.sun.ts.tests.appclient.deploy.resref.single; +import java.io.IOException; +import java.io.InputStream; +import java.net.URL; import java.util.Properties; -import com.sun.ts.lib.harness.Status; +import org.jboss.arquillian.container.test.api.Deployment; +import org.jboss.arquillian.container.test.api.OverProtocol; +import org.jboss.arquillian.container.test.api.TargetsContainer; +import org.jboss.arquillian.junit5.ArquillianExtension; +import org.jboss.arquillian.test.api.ArquillianResource; +import org.jboss.shrinkwrap.api.ShrinkWrap; +import org.jboss.shrinkwrap.api.asset.ByteArrayAsset; +import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; +import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.jboss.shrinkwrap.api.spec.WebArchive; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.jboss.shrinkwrap.api.asset.StringAsset; import com.sun.ts.lib.harness.EETest; +import com.sun.ts.lib.harness.Status; import com.sun.ts.lib.util.TSNamingContext; import com.sun.ts.lib.util.TestUtil; import com.sun.ts.tests.assembly.util.shared.resref.single.appclient.TestCode; +import tck.arquillian.porting.lib.spi.TestArchiveProcessor; + +@ExtendWith(ArquillianExtension.class) public class Client extends EETest { - private Properties props = null; - - private TSNamingContext nctx = null; - - public static void main(String[] args) { - Client theTests = new Client(); - Status s = theTests.run(args, System.out, System.err); - s.exit(); - } - - /** - * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; - * webServerHost; webServerPort; - */ - public void setup(String[] args, Properties props) throws Exception { - this.props = props; - - try { - nctx = new TSNamingContext(); - } catch (Exception e) { - throw new Exception("Setup failed:", e); - } - } - - /** - * @testName: testDatasource - * - * @assertion_ids: JavaEE:SPEC:10125 - * - * @test_Strategy: Package an application client declaring a resource - * reference for a javax.sql.Datasource. - * - * Check that: - We can deploy the application. - We can - * lookup the datasource. - We can use it to open a DB - * connection. - */ - public void testDatasource() throws Exception { - boolean pass; - - try { - pass = TestCode.testDatasource(nctx); - if (!pass) { - throw new Exception("Datasource res-ref test failed!"); - } - } catch (Exception e) { - TestUtil.logErr("[Client] Caught exception: " + e); - throw new Exception("Datasource res-ref test failed!", e); - } - } - - /** - * @testName: testURL - * - * @assertion_ids: JavaEE:SPEC:10125 - * - * @test_Strategy: Package an application client declaring a resource - * reference for a java.net.URL. - * - * Check that: - We can deploy the application. - We can - * lookup the URL. - We can use this URL factory to open a - * connection to a HTML page bundled in the application. - */ - public void testURL() throws Exception { - boolean pass; - - try { - pass = TestCode.testURL(nctx); - if (!pass) { - throw new Exception("URL res-ref test failed!"); - } - } catch (Exception e) { - TestUtil.logErr("[Client] Caught exception: " + e); - throw new Exception("URL res-ref test failed!", e); - } - } - - /** - * @testName: testQueue - * - * @assertion_ids: JavaEE:SPEC:10125 - * - * @test_Strategy: Package an application client declaring a resource - * reference for a jakarta.jms.QueueConnectionFactory. - * - * Check that: - We can deploy the application. - We can - * lookup the JMS Queue Connection Factory. - */ - public void testQueue() throws Exception { - boolean pass; - - try { - pass = TestCode.testQueue(nctx); - if (!pass) { - throw new Exception("Queue res-ref test failed!"); - } - } catch (Exception e) { - TestUtil.logErr("[Client] Caught exception: " + e); - throw new Exception("Queue res-ref test failed!", e); - } - } - - /** - * @testName: testTopic - * - * @assertion_ids: JavaEE:SPEC:10125 - * - * @test_Strategy: Package an application client declaring a resource - * reference for a jakarta.jms.TopicConnectionFactory. - * - * Check that: - We can deploy the application. - We can - * lookup the JMS Topic Connection Factory. - */ - public void testTopic() throws Exception { - boolean pass; - - try { - pass = TestCode.testTopic(nctx); - if (!pass) { - throw new Exception("Topic res-ref test failed!"); - } - } catch (Exception e) { - TestUtil.logErr("[Client] Caught exception: " + e); - throw new Exception("Topic res-ref test failed!", e); - } - } - - /** - * @testName: testAll - * - * @assertion_ids: JavaEE:SPEC:10125 - * - * @test_Strategy: Package an application client declaring a resource - * reference for all the standard resource manager connection - * factory types. - * - * Check that: - We can deploy the application. - We can - * lookup all the declared resource factories. - */ - public void testAll() throws Exception { - try { - testDatasource(); - testURL(); - testQueue(); - testTopic(); - } catch (Exception e) { - TestUtil.logErr("[Client] Caught exception: " + e); - throw new Exception("All res-ref test failed!", e); - } - } - - public void cleanup() { - logTrace("[Client] cleanup()"); - } + private Properties props = null; + + private TSNamingContext nctx = null; + + public static void main(String[] args) { + Client theTests = new Client(); + Status s = theTests.run(args, System.out, System.err); + s.exit(); + } + + + @TargetsContainer("tck-javatest") + @OverProtocol("javatest") + @Deployment(testable = false) + public static EnterpriseArchive createDeployment(@ArquillianResource TestArchiveProcessor archiveProcessor) + throws IOException { + + EnterpriseArchive ear = null; + + try { + + JavaArchive ejbClient = ShrinkWrap.create(JavaArchive.class, "appclient_dep_resref_single_client.jar"); + ejbClient.addPackages(true, Client.class.getPackage()); + ejbClient.addPackages(true, "com.sun.ts.lib.harness"); + ejbClient.addClasses(TestCode.class, Client.class); + + // The appclient-client descriptor + URL appClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/resref/single/appclient_dep_resref_single_client.xml"); + if (appClientUrl != null) { + ejbClient.addAsManifestResource(appClientUrl, "application-client.xml"); + } + // The sun appclient-client descriptor + URL sunAppClientUrl = Client.class.getResource( + "/com/sun/ts/tests/appclient/deploy/resref/single/appclient_dep_resref_single_client.jar.sun-application-client.xml"); + if (sunAppClientUrl != null) { + ejbClient.addAsManifestResource(sunAppClientUrl, "sun-application-client.xml"); + } + + ejbClient.addAsManifestResource( + new StringAsset("Main-Class: " + "com.sun.ts.tests.appclient.deploy.resref.single.Client" + "\n"), + "MANIFEST.MF"); + WebArchive webArchive = ShrinkWrap.create(WebArchive.class, "appclient_dep_resref_single_jsp_web.war"); + InputStream testJSP = Thread.currentThread().getContextClassLoader() + .getResourceAsStream("com/sun/ts/tests/appclient/deploy/resref/single/contentRoot/test.jsp"); + webArchive.add(new ByteArrayAsset(testJSP), "test.jsp"); + + // The jsp descriptor + URL jspUrl = Client.class.getResource("appclient_dep_resref_single_jsp_web.xml"); + if(jspUrl != null) { + webArchive.addAsWebInfResource(jspUrl, "web.xml"); + } + + ear = ShrinkWrap.create(EnterpriseArchive.class, "appclient_dep_resref_single.ear"); + ear.addAsModule(ejbClient); + ear.addAsModule(webArchive); + }catch(Exception e) { + e.printStackTrace(); + } + return ear; + }; + + /** + * @class.setup_props: org.omg.CORBA.ORBClass; java.naming.factory.initial; + * webServerHost; webServerPort; + */ + public void setup(String[] args, Properties props) throws Exception { + this.props = props; + + try { + nctx = new TSNamingContext(); + } catch (Exception e) { + throw new Exception("Setup failed:", e); + } + } + + /** + * @testName: testDatasource + * + * @assertion_ids: JavaEE:SPEC:10125 + * + * @test_Strategy: Package an application client declaring a resource reference + * for a javax.sql.Datasource. + * + * Check that: - We can deploy the application. - We can lookup + * the datasource. - We can use it to open a DB connection. + */ + @Test + public void testDatasource() throws Exception { + boolean pass; + + try { + pass = TestCode.testDatasource(nctx); + if (!pass) { + throw new Exception("Datasource res-ref test failed!"); + } + } catch (Exception e) { + e.printStackTrace(); + TestUtil.logErr("[Client] Caught exception: " + e); + throw new Exception("Datasource res-ref test failed!", e); + } + } + + /** + * @testName: testURL + * + * @assertion_ids: JavaEE:SPEC:10125 + * + * @test_Strategy: Package an application client declaring a resource reference + * for a java.net.URL. + * + * Check that: - We can deploy the application. - We can lookup + * the URL. - We can use this URL factory to open a connection + * to a HTML page bundled in the application. + */ + @Test + public void testURL() throws Exception { + boolean pass; + + try { + pass = TestCode.testURL(nctx); + if (!pass) { + throw new Exception("URL res-ref test failed!"); + } + } catch (Exception e) { + e.printStackTrace(); + TestUtil.logErr("[Client] Caught exception: " + e); + throw new Exception("URL res-ref test failed!", e); + } + } + + /** + * @testName: testQueue + * + * @assertion_ids: JavaEE:SPEC:10125 + * + * @test_Strategy: Package an application client declaring a resource reference + * for a jakarta.jms.QueueConnectionFactory. + * + * Check that: - We can deploy the application. - We can lookup + * the JMS Queue Connection Factory. + */ + @Test + public void testQueue() throws Exception { + boolean pass; + + try { + pass = TestCode.testQueue(nctx); + if (!pass) { + throw new Exception("Queue res-ref test failed!"); + } + } catch (Exception e) { + e.printStackTrace(); + TestUtil.logErr("[Client] Caught exception: " + e); + throw new Exception("Queue res-ref test failed!", e); + } + } + + /** + * @testName: testTopic + * + * @assertion_ids: JavaEE:SPEC:10125 + * + * @test_Strategy: Package an application client declaring a resource reference + * for a jakarta.jms.TopicConnectionFactory. + * + * Check that: - We can deploy the application. - We can lookup + * the JMS Topic Connection Factory. + */ + @Test + public void testTopic() throws Exception { + boolean pass; + + try { + pass = TestCode.testTopic(nctx); + if (!pass) { + throw new Exception("Topic res-ref test failed!"); + } + } catch (Exception e) { + e.printStackTrace(); + TestUtil.logErr("[Client] Caught exception: " + e); + throw new Exception("Topic res-ref test failed!", e); + } + } + + /** + * @testName: testAll + * + * @assertion_ids: JavaEE:SPEC:10125 + * + * @test_Strategy: Package an application client declaring a resource reference + * for all the standard resource manager connection factory + * types. + * + * Check that: - We can deploy the application. - We can lookup + * all the declared resource factories. + */ + @Test + public void testAll() throws Exception { + try { + testDatasource(); + testURL(); + testQueue(); + testTopic(); + } catch (Exception e) { + e.printStackTrace(); + TestUtil.logErr("[Client] Caught exception: " + e); + throw new Exception("All res-ref test failed!", e); + } + } + + public void cleanup() { + logTrace("[Client] cleanup()"); + } } diff --git a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/single/appclient_dep_resref_single_client.jar.sun-application-client.xml b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/single/appclient_dep_resref_single_client.jar.sun-application-client.xml index c8cd65d6f1..4ee43dfce1 100644 --- a/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/single/appclient_dep_resref_single_client.jar.sun-application-client.xml +++ b/tcks/profiles/platform/appclient/src/main/java/com/sun/ts/tests/appclient/deploy/resref/single/appclient_dep_resref_single_client.jar.sun-application-client.xml @@ -33,7 +33,7 @@ url/URL - http://webServerHost:webServerPort/appclient_dep_resref_single_jsp_web/test.jsp + http://localhost:8080/appclient_dep_resref_single_jsp_web/test.jsp jms/myQueueConnectionFactory diff --git a/tcks/profiles/platform/assembly/src/main/java/com/sun/ts/tests/assembly/util/shared/ejbref/single/TestCode.java b/tcks/profiles/platform/assembly/src/main/java/com/sun/ts/tests/assembly/util/shared/ejbref/single/TestCode.java index 7ddc6e4af3..c6da6a23ff 100644 --- a/tcks/profiles/platform/assembly/src/main/java/com/sun/ts/tests/assembly/util/shared/ejbref/single/TestCode.java +++ b/tcks/profiles/platform/assembly/src/main/java/com/sun/ts/tests/assembly/util/shared/ejbref/single/TestCode.java @@ -62,6 +62,7 @@ public static boolean testStatelessInternal(TSNamingContext nctx, pass = bean.isTestStatelessInternal(); } catch (Exception e) { + e.printStackTrace(); TestUtil.logErr("TestBean: Caught exception: " + e, e); pass = false; } @@ -83,6 +84,7 @@ public static boolean testStatelessExternal(TSNamingContext nctx, pass = true; } catch (Exception e) { + e.printStackTrace(); TestUtil.logErr( "TestBean: Exception in " + "testStatelessExternal(): " + e, e); pass = false; @@ -101,6 +103,7 @@ public static boolean testStatefulInternal(TSNamingContext nctx, pass = ssfInternalBeanRef1.isTestStatefulInternal(); } catch (Exception e) { + e.printStackTrace(); TestUtil.logErr("Caught exception: " + e, e); pass = false; } @@ -118,6 +121,7 @@ public static boolean testStatefulExternal(TSNamingContext nctx, StatefulExternal.class); pass = ssfExternalBeanRef1.isTestStatefulExternal(); } catch (Exception e) { + e.printStackTrace(); TestUtil.logErr("TestBean: Got exception: " + e, e); pass = false; }